Fix a compile error (missing semi-colon) when building for gtk3

svn path=/trunk/; revision=42209
This commit is contained in:
Bill Meier 2012-04-23 15:07:30 +00:00
parent ea68381088
commit ef1ede5d77

View file

@ -594,7 +594,7 @@ static void set_busy_cursor(GdkWindow *w)
gdk_window_set_cursor(w, cursor);
gdk_flush();
#if GTK_CHECK_VERSION(3,0,0)
g_object_unref(cursor)
g_object_unref(cursor);
#else
gdk_cursor_unref(cursor);
#endif