diff options
author | Fridrich Strba <fstrba@strbadell.localdomain> | 2009-06-03 20:54:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-04 22:56:14 +0800 |
commit | 991ca2dec86663170f1e118827aa32c29e7c6edc (patch) | |
tree | 380cc83333fd9cc4ccc0b59591a1b0ec39dcde1f | |
parent | 7a4f610ca3b6410b1ed2d5e93fa7e6e2d32dd63a (diff) | |
download | gsoc2013-evolution-991ca2dec86663170f1e118827aa32c29e7c6edc.tar.gz gsoc2013-evolution-991ca2dec86663170f1e118827aa32c29e7c6edc.tar.zst gsoc2013-evolution-991ca2dec86663170f1e118827aa32c29e7c6edc.zip |
Replace libgnome function with equivalent glib functions.
-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); |