diff options
author | Miguel de Icaza <miguel@gnu.org> | 2000-04-07 02:38:54 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-04-07 02:38:54 +0800 |
commit | 664197d4456ceb86ef4a3bd01efc93a7a8eb7aef (patch) | |
tree | c78604fa09cc133340a702c8aa7d9452c80e946e /shell/e-shortcut.c | |
parent | eb9e77424615f640c32913696d9e8b0c7a0c3249 (diff) | |
download | gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar.gz gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar.bz2 gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar.lz gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar.xz gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.tar.zst gsoc2013-evolution-664197d4456ceb86ef4a3bd01efc93a7a8eb7aef.zip |
Moved all ChangeLog entries for the shell to shell/ChangeLog.
Moved all ChangeLog entries for the shell to shell/ChangeLog.
Fixed the icon loading for the shortcut bar bug.
2000-04-06 Miguel de Icaza <miguel@gnu.org>
* shell/e-shortcut.c (shell_icon_cb): Append a slash here.
(shell_icons): Only list the filenames.
* shell/main.c (evolution_boot): Be less rude.
svn path=/trunk/; revision=2310
Diffstat (limited to 'shell/e-shortcut.c')
-rw-r--r-- | shell/e-shortcut.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shortcut.c b/shell/e-shortcut.c index 9d6d17893f..d066394049 100644 --- a/shell/e-shortcut.c +++ b/shell/e-shortcut.c @@ -350,12 +350,12 @@ static struct { char *prefix, *path; GdkPixbuf *image; } shell_icons[] = { - { "summary:", "evolution/evolution-today.png", NULL }, - { "mail:", "evolution/evolution-inbox.png", NULL }, - { "calendar:", "evolution/evolution-calendar.png", NULL }, - { "contacts:", "evolution/evolution-contacts.png", NULL }, - { "notes:", "evolution/evolution-notes.png", NULL }, - { "todo:", "evolution/evolution-tasks.png", NULL } + { "summary:", "evolution-today.png", NULL }, + { "mail:", "evolution-inbox.png", NULL }, + { "calendar:", "evolution-calendar.png", NULL }, + { "contacts:", "evolution-contacts.png", NULL }, + { "notes:", "evolution-notes.png", NULL }, + { "todo:", "evolution-tasks.png", NULL } }; #define NSHELL_ICONS (sizeof (shell_icons) / sizeof (shell_icons[0])) @@ -370,7 +370,7 @@ shell_icon_cb (EShortcutBar *shortcut_bar, gchar *url) if (!shell_icons[i].image) { char *pixmap_path; - pixmap_path = g_strconcat (EVOLUTION_IMAGES, shell_icons[i].path, NULL); + pixmap_path = g_strconcat (EVOLUTION_IMAGES "/", shell_icons[i].path, NULL); if (pixmap_path) shell_icons[i].image = gdk_pixbuf_new_from_file (pixmap_path); else { |