diff options
author | Fridrich Strba <fstrba@strbadell.localdomain> | 2009-06-03 20:54:08 +0800 |
---|---|---|
committer | Fridrich Strba <fstrba@strbadell.localdomain> | 2009-06-03 20:54:08 +0800 |
commit | af79a822bc244226fc3df48b45bd98b1bb9e08c3 (patch) | |
tree | 3cf0db4fe211fd30710819e7cb8e9dd243f63fd8 /e-util | |
parent | 93ce399686756d80238c0307f3d0539a4a8d1174 (diff) | |
download | gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.gz gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.tar.zst gsoc2013-evolution-af79a822bc244226fc3df48b45bd98b1bb9e08c3.zip |
Replace libgnome function with equivalent glib functions.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-win32-reloc.c | 3 |
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); |