diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-24 23:54:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-24 23:54:43 +0800 |
commit | f575a7626a769b0a99e080944749958d644d4aef (patch) | |
tree | 5e006645628a7b36fc5141230cb7bdcce0846e64 /shell/e-shell-window-commands.c | |
parent | 2087f385e566fcc3a79060e93c921afed310c2a9 (diff) | |
download | gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.gz gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.bz2 gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.lz gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.xz gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.zst gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.zip |
Eliminate redundant E_ICON_SIZE_* enumeration.
Diffstat (limited to 'shell/e-shell-window-commands.c')
-rw-r--r-- | shell/e-shell-window-commands.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c index 289c5cbea8..3d148781f1 100644 --- a/shell/e-shell-window-commands.c +++ b/shell/e-shell-window-commands.c @@ -1125,27 +1125,27 @@ static BonoboUIVerb help_verbs [] = { }; static EPixmap pixmaps [] = { - E_PIXMAP ("/Toolbar/SendReceive", "mail-send-receive", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/menu/File/OpenNewWindow", "window-new", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/SendReceive", "mail-send-receive", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/FileImporter", "stock_mail-import", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/Print/FilePageSetup", "stock_print-setup", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/FileClose", "window-close", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/File/FileExit", "application-exit", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/Edit/Settings", "preferences-desktop", E_ICON_SIZE_MENU), - E_PIXMAP ("/menu/Help/HelpOpenFAQ", "help-faq", E_ICON_SIZE_MENU), + E_PIXMAP ("/Toolbar/SendReceive", "mail-send-receive", GTK_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/menu/File/OpenNewWindow", "window-new", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/SendReceive", "mail-send-receive", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/FileImporter", "stock_mail-import", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/Print/FilePageSetup", "stock_print-setup", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/FileClose", "window-close", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/FileExit", "application-exit", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/Edit/Settings", "preferences-desktop", GTK_ICON_SIZE_MENU), + E_PIXMAP ("/menu/Help/HelpOpenFAQ", "help-faq", GTK_ICON_SIZE_MENU), E_PIXMAP_END }; static EPixmap offline_pixmaps [] = { - E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", E_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", GTK_ICON_SIZE_MENU), E_PIXMAP_END }; static EPixmap online_pixmaps [] = { - E_PIXMAP ("/menu/File/ToggleOffline", "stock_connect", E_ICON_SIZE_MENU), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_connect", GTK_ICON_SIZE_MENU), E_PIXMAP_END }; |