summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2008-11-13 21:42:08 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2008-11-13 21:42:08 +0000
commit2a1e635844e0e84b71cb083c6d9af9103230f6d0 (patch)
treee115b1a0bef139dd9644e694cb0bb8560925bfb6
parent09b96eea7e758f1ea154b3293f11705c0a6ed77f (diff)
downloadglade-2a1e635844e0e84b71cb083c6d9af9103230f6d0.tar.gz
Fixed win32 api for deprecated api usage (bug 559678).
* gladeui/glade-app.c: Fixed win32 api for deprecated api usage (bug 559678). svn path=/trunk/; revision=2027
-rw-r--r--ChangeLog2
-rw-r--r--gladeui/glade-app.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b1071321..2a0d90b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* gladeui/glade-utils.c: Refixed use of uninitialized variable (bug 559678).
+ * gladeui/glade-app.c: Fixed win32 api for deprecated api usage (bug 559678).
+
* plugins/gnome/glade-gnome.c: Fixed build breakage (bug 560668).
* plugins/gtk+/glade-gtk.c: Delete dangling submenus when moving children
diff --git a/gladeui/glade-app.c b/gladeui/glade-app.c
index 2283e9c0..bc813506 100644
--- a/gladeui/glade-app.c
+++ b/gladeui/glade-app.c
@@ -358,7 +358,7 @@ build_package_paths (void)
#ifdef G_OS_WIN32
gchar *prefix;
- prefix = g_win32_get_package_installation_directory (NULL, NULL);
+ prefix = g_win32_get_package_installation_directory_of_module (NULL);
pixmaps_dir = g_build_filename (prefix, "share", PACKAGE, "pixmaps", NULL);
catalogs_dir = g_build_filename (prefix, "share", PACKAGE, "catalogs", NULL);
modules_dir = g_build_filename (prefix, "lib", PACKAGE, "modules", NULL);