aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-01-23 04:13:09 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-01-23 04:13:09 +0800
commit62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15 (patch)
treef71998dd545a9d0736a7b1543f6bd5f62ee6fd83 /my-evolution/e-summary.c
parentcd8eae592e7ad9c2a2bbf34892a5ffb941a7db57 (diff)
downloadgsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar.gz
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar.bz2
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar.lz
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar.xz
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.tar.zst
gsoc2013-evolution-62e341e4c53d9d28e9ec5ffadfa56a1f1947ae15.zip
Get my-evolution.xml from EVOLUTION_UI_DIRECTORY.
* e-summary-factory.c (control_activate): Get my-evolution.xml from EVOLUTION_UI_DIRECTORY. * e-summary.c (e_pixmap_file): Use EVOLUTION_IMAGEDIR. (e_pixmap_file): Use EVOLUTION_BUTTONSDIR. * e-summary-weather.c (e_summary_weather_init_locations): Use LOCATIONDIR. (e_summary_weather_fill_etable): Likewise. * Makefile.am (Locationdir): Version using $(BASE_VERSION). (gladedir): Likewise. (INCLUDES): Define EVOLUTION_IMAGEDIR. svn path=/trunk/; revision=19563
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r--my-evolution/e-summary.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index 4e37b5eef2..414e94d73a 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -290,8 +290,7 @@ e_pixmap_file (const char *filename)
}
/* Try the evolution images dir */
- edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/evolution/images",
- filename);
+ edir = g_concat_dir_and_file (EVOLUTION_IMAGEDIR, filename);
if (g_file_exists (edir)) {
ret = g_strdup (edir);
@@ -302,8 +301,7 @@ e_pixmap_file (const char *filename)
g_free (edir);
/* Try the evolution button images dir */
- edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/evolution/images/buttons",
- filename);
+ edir = g_concat_dir_and_file (EVOLUTION_BUTTONSDIR, filename);
if (g_file_exists (edir)) {
ret = g_strdup (edir);