summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--demos/gtk-demo/main.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index aaf5f8d84a..fcb25dabe1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-17 Andre Klapper <a9016009@gmx.de>
+
+ * demos/gtk-demo/main.c:
+ Fix deprecated glib call.
+
2009-02-17 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
diff --git a/demos/gtk-demo/main.c b/demos/gtk-demo/main.c
index 435f232f2c..c7492ef196 100644
--- a/demos/gtk-demo/main.c
+++ b/demos/gtk-demo/main.c
@@ -41,7 +41,7 @@ get_democodedir (void)
if (result == NULL)
{
- result = g_win32_get_package_installation_directory (NULL, NULL);
+ result = g_win32_get_package_installation_directory_of_module (NULL);
if (result == NULL)
result = "unknown-location";