Title: [214398] trunk/Tools
Revision
214398
Author
commit-qu...@webkit.org
Date
2017-03-25 01:35:07 -0700 (Sat, 25 Mar 2017)

Log Message

[GTK] No value returned from PrintCustomWidgetTest::createWebKitPrintOperation() in TestPrinting.cpp
https://bugs.webkit.org/show_bug.cgi?id=170059

Patch by Adrian Perez de Castro <ape...@igalia.com> on 2017-03-25
Reviewed by Carlos Garcia Campos.

* TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting.cpp: Use "void" as return type in the declaration,
the only use of the method in this same file ignores the returned value anyway.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (214397 => 214398)


--- trunk/Tools/ChangeLog	2017-03-25 08:20:57 UTC (rev 214397)
+++ trunk/Tools/ChangeLog	2017-03-25 08:35:07 UTC (rev 214398)
@@ -1,3 +1,13 @@
+2017-03-25  Adrian Perez de Castro  <ape...@igalia.com>
+
+        [GTK] No value returned from PrintCustomWidgetTest::createWebKitPrintOperation() in TestPrinting.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=170059
+
+        Reviewed by Carlos Garcia Campos.
+
+        * TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting.cpp: Use "void" as return type in the declaration,
+        the only use of the method in this same file ignores the returned value anyway.
+
 2017-03-24  Srinivasan Vijayaraghavan  <svijayaragha...@apple.com>
 
         webkitpy should be able to run API tests

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting.cpp (214397 => 214398)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting.cpp	2017-03-25 08:20:57 UTC (rev 214397)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting.cpp	2017-03-25 08:35:07 UTC (rev 214398)
@@ -391,7 +391,7 @@
         sendKeyEvent(gdkKeyValue, GDK_KEY_RELEASE, modifiers);
     }
 
-    WebKitPrintOperation* createWebKitPrintOperation()
+    void createWebKitPrintOperation()
     {
         m_printOperation = adoptGRef(webkit_print_operation_new(m_webView));
         g_assert(m_printOperation);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to