aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-01-09 07:39:16 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-01-09 07:39:16 +0800
commit592c5b2ff2c404c6fe668255339515765d5c4ab4 (patch)
treec1efc6ec0ae015eb027df143a63865f9c47588cd /my-evolution/e-summary.c
parentc3f5e5f2416b4166d02cbf163438eda51eb3423c (diff)
downloadgsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar.gz
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar.bz2
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar.lz
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar.xz
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.tar.zst
gsoc2013-evolution-592c5b2ff2c404c6fe668255339515765d5c4ab4.zip
(e_pixmap_file): Update to use
$(datadir)/evolution/images/ instead of $(datadir)/images/evolution to fetch the icons. svn path=/trunk/; revision=19298
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r--my-evolution/e-summary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index 4a47313e3d..4f718ecc70 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -290,7 +290,7 @@ e_pixmap_file (const char *filename)
}
/* Try the evolution images dir */
- edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution",
+ edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/evolution/images",
filename);
if (g_file_exists (edir)) {
@@ -302,7 +302,7 @@ e_pixmap_file (const char *filename)
g_free (edir);
/* Try the evolution button images dir */
- edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution/buttons",
+ edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/evolution/images/buttons",
filename);
if (g_file_exists (edir)) {