summaryrefslogtreecommitdiff
path: root/gdk/win32/gdkwindow-win32.c
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2017-10-24 13:55:36 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2017-10-24 13:56:29 +0800
commit4d44865f422adba2e2a60e62141df38763586001 (patch)
treee698340b84290f32ec4c71c476a659d9d55acb55 /gdk/win32/gdkwindow-win32.c
parente1572e003ab9de0e9fce503f967b5c4f5be36b9e (diff)
downloadgtk+-4d44865f422adba2e2a60e62141df38763586001.tar.gz
gdk/win32/gdkwindow-win32.c: Fix build
Make up for the missed commas...
Diffstat (limited to 'gdk/win32/gdkwindow-win32.c')
-rw-r--r--gdk/win32/gdkwindow-win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/win32/gdkwindow-win32.c b/gdk/win32/gdkwindow-win32.c
index f0ba27f52e..65402bac45 100644
--- a/gdk/win32/gdkwindow-win32.c
+++ b/gdk/win32/gdkwindow-win32.c
@@ -2373,12 +2373,12 @@ gdk_win32_window_set_icon_list (GdkWindow *window,
/* Create the icons */
big_pixbuf = gdk_pixbuf_get_from_surface (big_surface, 0, 0,
- cairo_image_surface_get_width (big_surface)
+ cairo_image_surface_get_width (big_surface),
cairo_image_surface_get_height (big_surface));
big_hicon = _gdk_win32_pixbuf_to_hicon (big_pixbuf);
g_object_unref (big_pixbuf);
small_pixbuf = gdk_pixbuf_get_from_surface (small_surface, 0, 0,
- cairo_image_surface_get_width (small_surface)
+ cairo_image_surface_get_width (small_surface),
cairo_image_surface_get_height (small_surface));
small_hicon = _gdk_win32_pixbuf_to_hicon (small_pixbuf);
g_object_unref (small_pixbuf);