summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-09-13 09:20:30 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-09-13 09:20:30 +0000
commit6325fb2c602a3044fdea68b9ea5703e1be582dfc (patch)
tree46007813fad2338974935a2476609057bdda41fc
parente5742e3f13decd000037a707933b78d654693764 (diff)
downloadatk-6325fb2c602a3044fdea68b9ea5703e1be582dfc.tar.gz
Do as the docs for g_win32_get_package_installation_directory() say and
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
-rw-r--r--ChangeLog6
-rwxr-xr-xatk/atkobject.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3496ce3..9f3739a 100644
--- 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:
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 5e88303..9f39ccf 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -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);
}