edje: move Edje_Color_Class->desc to end of struct

this allows memory layout compatibility with Elm_Color_Class
This commit is contained in:
Mike Blumenkrantz 2015-04-02 15:20:21 -04:00
parent 5a61ee107c
commit ac11a9cb36
1 changed files with 1 additions and 1 deletions

View File

@ -25,11 +25,11 @@ typedef struct _Edje_Color_Class Edje_Color_Class;
struct _Edje_Color_Class
{
const char *name;
Eina_Stringshare *desc;
unsigned char r, g, b, a;
unsigned char r2, g2, b2, a2;
unsigned char r3, g3, b3, a3;
Eina_Stringshare *desc;
};
/**