summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-09-13 09:19:03 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-09-13 09:19:03 +0000
commitb2dff511d3ebb227a479d39ee9948ebd16fc6dd3 (patch)
tree9b804538877be043a858c3be383b81ed491212cb /gdk-pixbuf
parent8a563fbef014f21fcd17b54f7b33271d3f96b44d (diff)
downloadgdk-pixbuf-b2dff511d3ebb227a479d39ee9948ebd16fc6dd3.tar.gz
gdk-pixbuf/gdk-pixbuf-io.c Do as the docs for
2008-09-13 Tor Lillqvist <tml@novell.com> * gdk-pixbuf/gdk-pixbuf-io.c * gtk/gtkmain.c: Do as the docs for g_win32_get_package_installation_directory() say and pass NULL as the first parameter. svn path=/trunk/; revision=21379
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog6
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 6e0ad078c..841ff5e62 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-13 Tor Lillqvist <tml@novell.com>
+
+ * gdk-pixbuf-io.c: Do as the docs for
+ g_win32_get_package_installation_directory() say and pass NULL as
+ the first parameter.
+
2008-09-07 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-io.c (gdk_pixbuf_io_init): Plug a small memory
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c
index 61256e863..967febbbd 100644
--- a/gdk-pixbuf/gdk-pixbuf-io.c
+++ b/gdk-pixbuf/gdk-pixbuf-io.c
@@ -238,7 +238,7 @@ get_toplevel (void)
if (toplevel == NULL)
toplevel = g_win32_get_package_installation_subdirectory
- (GETTEXT_PACKAGE, dll_name, "");
+ (NULL, dll_name, "");
return toplevel;
}
@@ -250,7 +250,7 @@ get_sysconfdir (void)
if (sysconfdir == NULL)
sysconfdir = g_win32_get_package_installation_subdirectory
- (GETTEXT_PACKAGE, dll_name, "etc");
+ (NULL, dll_name, "etc");
return sysconfdir;
}