From: Tor Lillqvist Date: Sat, 13 Sep 2008 09:20:30 +0000 (+0000) Subject: Do as the docs for g_win32_get_package_installation_directory() say and X-Git-Tag: ATK_1_24_0~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6325fb2c602a3044fdea68b9ea5703e1be582dfc;p=platform%2Fupstream%2Fatk.git 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 --- 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); }