Fix typo in Win32 and Quartz code:

2008-08-04  Tor Lillqvist  <tml@novell.com>

	* gtk/gtkstatusicon.c: Fix typo in Win32 and Quartz code:
	s/gtk_icon_icon_info_load_icon/gtk_icon_info_load_icon/ .


svn path=/trunk/; revision=20955
This commit is contained in:
Tor Lillqvist 2008-08-03 23:16:31 +00:00 committed by Tor Lillqvist
parent 72f0a30431
commit 6ecaa61a1c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-08-04 Tor Lillqvist <tml@novell.com>
* gtk/gtkstatusicon.c: Fix typo in Win32 and Quartz code:
s/gtk_icon_icon_info_load_icon/gtk_icon_info_load_icon/ .
2008-08-04 Tor Lillqvist <tml@novell.com>
* configure.in: Don't bother with the test "if gio can sniff png"

View File

@ -1240,7 +1240,7 @@ gtk_status_icon_update_image (GtkStatusIcon *status_icon)
priv->image_data.gicon,
priv->size,
0);
GdkPixbuf *pixbuf = gtk_icon_icon_info_load_icon (info, NULL);
GdkPixbuf *pixbuf = gtk_icon_info_load_icon (info, NULL);
prev_hicon = priv->nid.hIcon;
priv->nid.hIcon = gdk_win32_pixbuf_to_hicon_libgtk_only (pixbuf);
@ -1260,7 +1260,7 @@ gtk_status_icon_update_image (GtkStatusIcon *status_icon)
priv->image_data.gicon,
priv->size,
0);
GdkPixbuf *pixbuf = gtk_icon_icon_info_load_icon (info, NULL);
GdkPixbuf *pixbuf = gtk_icon_info_load_icon (info, NULL);
QUARTZ_POOL_ALLOC;
[priv->status_item setImage:pixbuf];