diff options
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); |