aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/calendar-weather/calendar-weather.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2005-01-08 00:28:15 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2005-01-08 00:28:15 +0800
commit621fa441983c036519b49a8a200c9ee69715856b (patch)
treeca5efab4b9fbc751c678f12e99baf693ca09071e /plugins/calendar-weather/calendar-weather.c
parent16167b179d26cdb8b2ff0dcb1503b93e5e56815a (diff)
downloadgsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar.gz
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar.bz2
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar.lz
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar.xz
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.tar.zst
gsoc2013-evolution-621fa441983c036519b49a8a200c9ee69715856b.zip
define EDS's datadir, needed to get to the Locations.xml file.
2005-01-07 Rodrigo Moya <rodrigo@novell.com> * Makefile.am: define EDS's datadir, needed to get to the Locations.xml file. * calendar-weather.c (load_locations): use EDS's datadir for the Locations.xml file full path. svn path=/trunk/; revision=28273
Diffstat (limited to 'plugins/calendar-weather/calendar-weather.c')
-rw-r--r--plugins/calendar-weather/calendar-weather.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c
index d7c68b8141..9885193fe5 100644
--- a/plugins/calendar-weather/calendar-weather.c
+++ b/plugins/calendar-weather/calendar-weather.c
@@ -155,7 +155,7 @@ load_locations ()
LIBXML_TEST_VERSION
- doc = xmlParseFile (WEATHER_DATADIR "/Locations.xml");
+ doc = xmlParseFile (WEATHER_EDS_DATADIR "/Locations.xml");
if (doc == NULL) {
g_warning ("failed to read locations file");
return;