diff --git a/ChangeLog b/ChangeLog index aaf5f8d84a..fcb25dabe1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-17 Andre Klapper + + * demos/gtk-demo/main.c: + Fix deprecated glib call. + 2009-02-17 Matthias Clasen * 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";