From 6325fb2c602a3044fdea68b9ea5703e1be582dfc Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sat, 13 Sep 2008 09:20:30 +0000 Subject: [PATCH] Do as the docs for g_win32_get_package_installation_directory() say and 2008-09-13 Tor Lillqvist * 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 | 6 ++++++ atk/atkobject.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3496ce3..9f3739a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-13 Tor Lillqvist + + * 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 * 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); } -- 2.7.4