play a bit with pahole

This commit is contained in:
Boris Faure 2014-05-08 14:07:37 +02:00
parent 2b9c9a8351
commit b504db6cba
2 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,8 @@ struct _Config_Color
struct _Config struct _Config
{ {
int version; int version;
int scrollback;
struct { struct {
const char *name; const char *name;
const char *orig_name; /* not in EET */ const char *orig_name; /* not in EET */
@ -32,9 +33,8 @@ struct _Config
Eina_Bool inline_please; Eina_Bool inline_please;
} helper; } helper;
const char *theme; const char *theme;
const char *background; const char *background;
const char *wordsep; const char *wordsep;
int scrollback;
double tab_zoom; double tab_zoom;
int vidmod; int vidmod;
Eina_Bool jump_on_keypress; Eina_Bool jump_on_keypress;

View File

@ -26,8 +26,8 @@ struct _Termio
{ {
Evas_Object_Smart_Clipped_Data __clipped_data; Evas_Object_Smart_Clipped_Data __clipped_data;
struct { struct {
int size;
const char *name; const char *name;
int size;
int chw, chh; int chw, chh;
} font; } font;
struct { struct {
@ -45,6 +45,7 @@ struct _Termio
int cx, cy; int cx, cy;
int button; int button;
} mouse; } mouse;
unsigned int last_keyup;
struct { struct {
char *string; char *string;
int x1, y1, x2, y2; int x1, y1, x2, y2;
@ -61,7 +62,6 @@ struct _Termio
} link; } link;
int zoom_fontsize_start; int zoom_fontsize_start;
int scroll; int scroll;
unsigned int last_keyup;
Eina_List *mirrors; Eina_List *mirrors;
Eina_List *seq; Eina_List *seq;
Evas_Object *self; Evas_Object *self;