aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-win32-reloc.c
diff options
context:
space:
mode:
authorFridrich Strba <fstrba@strbadell.localdomain>2009-06-03 20:54:08 +0800
committerFridrich Strba <fstrba@strbadell.localdomain>2009-06-03 20:54:08 +0800
commitaf79a822bc244226fc3df48b45bd98b1bb9e08c3 (patch)
tree3cf0db4fe211fd30710819e7cb8e9dd243f63fd8 /e-util/e-win32-reloc.c
parent93ce399686756d80238c0307f3d0539a4a8d1174 (diff)
downloadgsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.gz
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.bz2
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.lz
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.xz
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.zst
gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.zip
Replace libgnome function with equivalent glib functions.
Diffstat (limited to 'e-util/e-win32-reloc.c')
-rw-r--r--e-util/e-win32-reloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/e-util/e-win32-reloc.c b/e-util/e-win32-reloc.c
index a080518d4c..c862826fed 100644
--- a/e-util/e-win32-reloc.c
+++ b/e-util/e-win32-reloc.c
@@ -104,7 +104,8 @@ setup (void)
}
/* This requires that the libeutil DLL is installed in $bindir */
- gnome_win32_get_prefixes (hmodule, &full_prefix, &cp_prefix);
+ full_prefix = g_win32_get_package_installation_directory_of_module(hmodule);
+ cp_prefix = g_win32_locale_filename_from_utf8(full_prefix);
localedir = replace_prefix (cp_prefix, EVOLUTION_LOCALEDIR);