Enlightenment CVS committal
Author : rbdpngn
Project : e17
Module : libs/edje
Dir : e17/libs/edje/src/lib
Modified Files:
edje_calc.c edje_main.c edje_private.h edje_text.c edje_util.c
Log Message:
Spelling cleanup, though it feels kinda dirty "correcting spelling" on a word
that doesn't exist.
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_calc.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- edje_calc.c 29 Oct 2003 06:42:03 -0000 1.19
+++ edje_calc.c 30 Oct 2003 04:45:18 -0000 1.20
@@ -415,7 +415,7 @@
if ((ep->part->text_class) && (strlen(ep->part->text_class) > 0))
{
- Ejde_Text_Class *tc;
+ Edje_Text_Class *tc;
tc = _edje_text_class_find(ed, ep->part->text_class);
if (tc->font) font = tc->font;
@@ -699,7 +699,7 @@
if ((chosen_desc->color_class) && (strlen(chosen_desc->color_class) > 0))
{
- Ejde_Color_Class *cc;
+ Edje_Color_Class *cc;
cc = _edje_color_class_find(ed, chosen_desc->color_class);
if (cc)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_main.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- edje_main.c 30 Jul 2003 02:58:22 -0000 1.25
+++ edje_main.c 30 Oct 2003 04:45:18 -0000 1.26
@@ -51,7 +51,7 @@
}
while (ed->color_classes)
{
- Ejde_Color_Class *cc;
+ Edje_Color_Class *cc;
cc = ed->color_classes->data;
ed->color_classes = evas_list_remove(ed->color_classes, cc);
@@ -60,7 +60,7 @@
}
while (ed->text_classes)
{
- Ejde_Text_Class *tc;
+ Edje_Text_Class *tc;
tc = ed->text_classes->data;
ed->text_classes = evas_list_remove(ed->text_classes, tc);
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_private.h,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- edje_private.h 29 Oct 2003 06:42:03 -0000 1.47
+++ edje_private.h 30 Oct 2003 04:45:18 -0000 1.48
@@ -351,9 +351,9 @@
typedef struct _Edje_Calc_Params Edje_Calc_Params;
typedef struct _Edje_Emission Edje_Emission;
typedef struct _Edje_Pending_Program Edje_Pending_Program;
-typedef struct _Ejde_Text_Style Ejde_Text_Style;
-typedef struct _Ejde_Color_Class Ejde_Color_Class;
-typedef struct _Ejde_Text_Class Ejde_Text_Class;
+typedef struct _Edje_Text_Style Edje_Text_Style;
+typedef struct _Edje_Color_Class Edje_Color_Class;
+typedef struct _Edje_Text_Class Edje_Text_Class;
struct _Edje
{
@@ -514,7 +514,7 @@
Ecore_Timer *timer;
};
-struct _Ejde_Text_Style
+struct _Edje_Text_Style
{
struct {
unsigned char x, y;
@@ -530,7 +530,7 @@
} members[32];
};
-struct _Ejde_Color_Class
+struct _Edje_Color_Class
{
char *name;
unsigned char r, g, b, a;
@@ -538,7 +538,7 @@
unsigned char r3, g3, b3, a3;
};
-struct _Ejde_Text_Class
+struct _Edje_Text_Class
{
char *name;
char *font;
@@ -585,8 +585,8 @@
void _edje_text_recalc_apply(Edje *ed, Edje_Real_Part *ep, Edje_Calc_Params *params,
Edje_Part_Description *chosen_desc);
Edje_Real_Part *_edje_real_part_get(Edje *ed, char *part);
-Ejde_Color_Class *_edje_color_class_find(Edje *ed, char *color_class);
-Ejde_Text_Class *_edje_text_class_find(Edje *ed, char *text_class);
+Edje_Color_Class *_edje_color_class_find(Edje *ed, char *color_class);
+Edje_Text_Class *_edje_text_class_find(Edje *ed, char *text_class);
Edje *_edje_fetch(Evas_Object *obj);
int _edje_glob_match(char *str, char *glob);
int _edje_freeze(Edje *ed);
@@ -614,7 +614,7 @@
extern int _edje_anim_count;
extern Ecore_Timer *_edje_timer;
extern Evas_List *_edje_animators;
-extern Ejde_Text_Style _edje_text_styles[EDJE_TEXT_EFFECT_LAST];
+extern Edje_Text_Style _edje_text_styles[EDJE_TEXT_EFFECT_LAST];
extern Evas_List *_edje_edjes;
#endif
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_text.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- edje_text.c 19 Oct 2003 02:11:06 -0000 1.6
+++ edje_text.c 30 Oct 2003 04:45:18 -0000 1.7
@@ -1,7 +1,7 @@
#include "Edje.h"
#include "edje_private.h"
-Ejde_Text_Style _edje_text_styles[EDJE_TEXT_EFFECT_LAST];
+Edje_Text_Style _edje_text_styles[EDJE_TEXT_EFFECT_LAST];
void
_edje_text_init(void)
@@ -247,7 +247,7 @@
if ((ep->part->text_class) && (strlen(ep->part->text_class) > 0))
{
- Ejde_Text_Class *tc;
+ Edje_Text_Class *tc;
tc = _edje_text_class_find(ed, ep->part->text_class);
if (tc->font) font = tc->font;
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/lib/edje_util.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- edje_util.c 19 Oct 2003 02:11:06 -0000 1.26
+++ edje_util.c 30 Oct 2003 04:45:18 -0000 1.27
@@ -64,7 +64,7 @@
{
Edje *ed;
Evas_List *l;
- Ejde_Color_Class *cc;
+ Edje_Color_Class *cc;
ed = _edje_fetch(obj);
if ((!ed) || (!color_class)) return;
@@ -105,7 +105,7 @@
return;
}
}
- cc = malloc(sizeof(Ejde_Color_Class));
+ cc = malloc(sizeof(Edje_Color_Class));
cc->name = strdup(color_class);
if (!cc->name)
{
@@ -134,7 +134,7 @@
{
Edje *ed;
Evas_List *l;
- Ejde_Text_Class *tc;
+ Edje_Text_Class *tc;
ed = _edje_fetch(obj);
if ((!ed) || (!text_class)) return;
@@ -160,7 +160,7 @@
return;
}
}
- tc = malloc(sizeof(Ejde_Text_Class));
+ tc = malloc(sizeof(Edje_Text_Class));
tc->name = strdup(text_class);
if (!tc->name)
{
@@ -871,7 +871,7 @@
return NULL;
}
-Ejde_Color_Class *
+Edje_Color_Class *
_edje_color_class_find(Edje *ed, char *color_class)
{
Evas_List *l;
@@ -879,7 +879,7 @@
if (!color_class) return NULL;
for (l = ed->color_classes; l; l = l->next)
{
- Ejde_Color_Class *cc;
+ Edje_Color_Class *cc;
cc = l->data;
if (!strcmp(color_class, cc->name)) return cc;
@@ -887,7 +887,7 @@
return NULL;
}
-Ejde_Text_Class *
+Edje_Text_Class *
_edje_text_class_find(Edje *ed, char *text_class)
{
Evas_List *l;
@@ -895,7 +895,7 @@
if (!text_class) return NULL;
for (l = ed->text_classes; l; l = l->next)
{
- Ejde_Text_Class *tc;
+ Edje_Text_Class *tc;
tc = l->data;
if (!strcmp(text_class, tc->name)) return tc;
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs