Do as the docs for g_win32_get_package_installation_directory() say and
authorTor Lillqvist <tml@novell.com>
Sat, 13 Sep 2008 09:20:30 +0000 (09:20 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sat, 13 Sep 2008 09:20:30 +0000 (09:20 +0000)
2008-09-13  Tor Lillqvist  <tml@novell.com>

* atk/atkobject.c (get_atk_locale_dir): Do as the docs for
g_win32_get_package_installation_directory() say and pass NULL as
the first parameter.

svn path=/trunk/; revision=1273

ChangeLog
atk/atkobject.c

index 3496ce3..9f3739a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-13  Tor Lillqvist  <tml@novell.com>
+
+       * atk/atkobject.c (get_atk_locale_dir): Do as the docs for
+       g_win32_get_package_installation_directory() say and pass NULL as
+       the first parameter.
+
 2008-09-09  Li Yuan  <li.yuan@sun.com>
 
        * configure.in:
index 5e88303..9f39ccf 100755 (executable)
@@ -251,7 +251,7 @@ get_atk_locale_dir (void)
       gchar *temp;
 
       temp = g_win32_get_package_installation_subdirectory
-        (GETTEXT_PACKAGE, dll_name, "lib\\locale");
+        (NULL, dll_name, "lib\\locale");
       atk_localedir = g_win32_locale_filename_from_utf8 (temp);
       g_free (temp);
     }