diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 23:50:31 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 23:50:31 +0800 |
commit | 50ff525b79aaa97ab627d5dfd4c9e65fe013ecce (patch) | |
tree | bd5247f2648c4d0458f22ce9f991e7b37d1963c7 /composer/e-msg-composer-attachment-bar.c | |
parent | 9c8e5249201801aa1e863bb5de2ee63d2286d071 (diff) | |
download | gsoc2013-evolution-50ff525b79aaa97ab627d5dfd4c9e65fe013ecce.tar.gz gsoc2013-evolution-50ff525b79aaa97ab627d5dfd4c9e65fe013ecce.tar.zst gsoc2013-evolution-50ff525b79aaa97ab627d5dfd4c9e65fe013ecce.zip |
clean up
* Makefile.am: clean up
* e-msg-composer.c (autosave_manager_query_load_orphans): #include
string.h
(menu_file_send_cb): s/gtk_signal_emit/g_signal_emit/
* e-msg-composer-attachment.c: #include string.h
(e_msg_composer_attachment_edit): s/E_GLADEDIR/EVOLUTION_GLADEDIR
* e-msg-composer-attachment-bar.c: #include string.h
(pixbuf_for_mime_type): s/ICONSDIR/IMAGESDIR/
* e-msg-composer-hdrs.c: #include string.h
* e-msg-composer-select-file.c (run_selector): Remove unused var
* evolution-composer.c: #include string.h
(evolution_composer_init): Remove unused var
* listener.c: #include string.h
(listener_new): Remove unused var
svn path=/trunk/; revision=19804
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index a3da5c1527..a391838df3 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -26,6 +26,7 @@ #include <config.h> #endif +#include <string.h> #include <gtk/gtk.h> #include <glade/glade.h> #include <gconf/gconf.h> @@ -218,7 +219,7 @@ pixbuf_for_mime_type (const char *mime_type) || strcmp (mime_type, "message/rfc822") == 0) { char *name; - name = g_build_filename (EVOLUTION_ICONSDIR, "mail.png", NULL); + name = g_build_filename (EVOLUTION_IMAGESDIR, "mail.png", NULL); pixbuf = gdk_pixbuf_new_from_file (name, NULL); g_free (name); |