diff options
author | Hans Breuer <hans@breuer.org> | 2001-07-20 18:05:33 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2001-07-20 18:05:33 +0000 |
commit | 4c5b559e04a7de00ae7fc0edea0ab4767c1d9f4c (patch) | |
tree | 476125608dd6c417fc8452a75cbf37f44e3afa11 /gtk/gtkiconfactory.c | |
parent | 9d1e828d08de78793e1f1ef68535b4d62b13e691 (diff) | |
download | gdk-pixbuf-4c5b559e04a7de00ae7fc0edea0ab4767c1d9f4c.tar.gz |
gdk_device_get_history moved to gdk/gdkinput.c like the other backends
2001-07-20 Hans Breuer <hans@breuer.org>
* gdk/win32/gdkinput-win32.c : gdk_device_get_history moved to
gdk/gdkinput.c like the other backends
* gdk/win32/gdkinput-win32.h :
* gdk/win32/gdkinput.c :
* gdk/win32/gdkvisual-win32.c :
* gdk/win32/gdkwin32.h : mechanical adaption to GdkDevice and
GdkVisual GObjectification. UNTESTED for pen-devices because
I simply have none.
* gdk/gdk.def :
* gtk/gtk.def : updated externals
* gtk/gtkiconfactory.c :
* gtk/gtkoldeditable.c : GError *error needs to be initialized (= NULL)
before passing &error to functions to avoid strange crashes
* gtk/gtkcontainer.c (gtk_container_real_set_focus_child) : is static
* gtk/gtkwidget.c (gtk_widget_get_child_visible): use g_return_val_if_fail
* gtk/makefile.msc.in : updated
Diffstat (limited to 'gtk/gtkiconfactory.c')
-rw-r--r-- | gtk/gtkiconfactory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkiconfactory.c b/gtk/gtkiconfactory.c index 843fee856..bc43ec864 100644 --- a/gtk/gtkiconfactory.c +++ b/gtk/gtkiconfactory.c @@ -1036,7 +1036,7 @@ find_and_prep_icon_source (GtkIconSet *icon_set, if (source->pixbuf == NULL) { - GError *error; + GError *error = NULL; g_assert (source->filename); source->pixbuf = gdk_pixbuf_new_from_file (source->filename, &error); |