[webkit-reviews] review granted: [Bug 115914] [GTK] Remove unnecessary GTK_CHECK_VERSION #ifdefs : [Attachment 201360] Patch
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri May 10 11:27:01 PDT 2013
Martin Robinson <mrobinson at webkit.org> has granted Carlos Garcia Campos
<cgarcia at igalia.com>'s request for review:
Bug 115914: [GTK] Remove unnecessary GTK_CHECK_VERSION #ifdefs
https://bugs.webkit.org/show_bug.cgi?id=115914
Attachment 201360: Patch
https://bugs.webkit.org/attachment.cgi?id=201360&action=review
------- Additional Comments from Martin Robinson <mrobinson at webkit.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=201360&action=review
> Source/WebCore/platform/graphics/gtk/FullscreenVideoControllerGtk.cpp:201
> - GdkCursor* cursor = blankCursor();
> - gdk_window_set_cursor(window, cursor);
> + GRefPtr<GdkCursor> cursor = adoptGRef(gdk_cursor_new(GDK_BLANK_CURSOR));
> + gdk_window_set_cursor(window, cursor.get());
Nice!
More information about the webkit-reviews
mailing list