diff options
Diffstat (limited to 'shell/evolution-shell-component-utils.h')
-rw-r--r-- | shell/evolution-shell-component-utils.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shell/evolution-shell-component-utils.h b/shell/evolution-shell-component-utils.h index 5aceab64c7..a1890fe4ef 100644 --- a/shell/evolution-shell-component-utils.h +++ b/shell/evolution-shell-component-utils.h @@ -31,12 +31,13 @@ extern "C" { typedef struct _EPixmap { const char *path; - const char *fname; + const char *name; + gint size; char *pixbuf; } EPixmap; -#define E_PIXMAP(path,fname) { (path), (fname), NULL } -#define E_PIXMAP_END { NULL, NULL, NULL } +#define E_PIXMAP(path,name,size) { (path), (name), (size), NULL } +#define E_PIXMAP_END { NULL, NULL, 0, NULL } /* Takes an array of pixmaps, terminated by E_PIXMAP_END, and loads into uic */ void e_pixmaps_update (BonoboUIComponent *uic, EPixmap *pixcache); |