diff options
author | Michael Terry <mike@mterry.name> | 2004-04-19 23:17:54 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-04-19 23:17:54 +0800 |
commit | 9b8a6860948ad7cd5d1c6a24360e4b59fc120fb2 (patch) | |
tree | 526569cf0da5f2d8ef68dc60cfc919e1c931bfea /shell/e-shell-window-commands.c | |
parent | 1ace8a21329554efffa1d1185befee021cedd1a7 (diff) | |
download | gsoc2013-evolution-9b8a6860948ad7cd5d1c6a24360e4b59fc120fb2.tar.gz gsoc2013-evolution-9b8a6860948ad7cd5d1c6a24360e4b59fc120fb2.tar.zst gsoc2013-evolution-9b8a6860948ad7cd5d1c6a24360e4b59fc120fb2.zip |
Change component icons to use the icon theme names for icons Remove
2004-04-19 Michael Terry <mike@mterry.name>
* GNOME_Evolution_Test.server.in.in: Change component icons to use the
icon theme names for icons
* Makefile.am: Remove e-icon-factory.[ch]
* e-component-registry.c: Use the icon theme for component icons
* e-icon-factory.[ch]: Removed these files
* e-shell-importer.c:
* e-shell-settings-dialog.c:
* e-shell-startup-wizard.c:
* e-shell-window-commands.c:
* e-user-creatable-items-handler.c:
* evolution-shell-component-utils.[ch]:
* main.c:
* glade/evolution-startup-wizard.glade:
* importer/import.glade: Use the icon theme via EIconFactory for all
of the icons in the shell, and the window icons
svn path=/trunk/; revision=25512
Diffstat (limited to 'shell/e-shell-window-commands.c')
-rw-r--r-- | shell/e-shell-window-commands.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c index 39f6390b68..6d9dc6c224 100644 --- a/shell/e-shell-window-commands.c +++ b/shell/e-shell-window-commands.c @@ -345,22 +345,22 @@ static BonoboUIVerb help_verbs [] = { }; static EPixmap pixmaps [] = { - E_PIXMAP ("/commands/SendReceive", "send-receive.xpm"), - E_PIXMAP ("/Toolbar/SendReceive", "buttons/send-24-receive.png"), - E_PIXMAP ("/menu/File/FileImporter", "import.xpm"), - E_PIXMAP ("/menu/File/ToggleOffline", "work_offline.xpm"), - E_PIXMAP ("/menu/Tools/Settings", "settings-16.png"), + E_PIXMAP ("/commands/SendReceive", "stock_mail-send-receive", 16), + E_PIXMAP ("/Toolbar/SendReceive", "stock_mail-send-receive", 24), + E_PIXMAP ("/menu/File/FileImporter", "stock_mail-import", 16), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", 16), + E_PIXMAP ("/menu/Tools/Settings", "gnome-settings", 16), E_PIXMAP_END }; static EPixmap offline_pixmaps [] = { - E_PIXMAP ("/menu/File/ToggleOffline", "work_offline.xpm"), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_disconnect", 16), E_PIXMAP_END }; static EPixmap online_pixmaps [] = { - E_PIXMAP ("/menu/File/ToggleOffline", "work_online-16.png"), + E_PIXMAP ("/menu/File/ToggleOffline", "stock_connect", 16), E_PIXMAP_END }; |