Title: [148671] trunk/Source/WebKit2
Revision
148671
Author
[email protected]
Date
2013-04-18 06:08:22 -0700 (Thu, 18 Apr 2013)

Log Message

[EFL][WK2] Change inadequate return value in method setDone().
https://bugs.webkit.org/show_bug.cgi?id=114806

Patch by Krzysztof Wolanski <[email protected]> on 2013-04-18
Reviewed by Andreas Kling.

Fix possible warning in EFL port: no return statement in function returning non-void.
Change return value from bool to void in method setDone().

* UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp:
(EWK2UnitTest::CallbackDataTimer::setDone):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (148670 => 148671)


--- trunk/Source/WebKit2/ChangeLog	2013-04-18 13:04:15 UTC (rev 148670)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-18 13:08:22 UTC (rev 148671)
@@ -1,3 +1,16 @@
+2013-04-18  Krzysztof Wolanski  <[email protected]>:
+
+        [EFL][WK2] Change inadequate return value in method setDone().
+        https://bugs.webkit.org/show_bug.cgi?id=114806
+
+        Reviewed by Andreas Kling.
+
+        Fix possible warning in EFL port: no return statement in function returning non-void.
+        Change return value from bool to void in method setDone().
+
+        * UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp:
+        (EWK2UnitTest::CallbackDataTimer::setDone):
+
 2013-04-18  Grzegorz Czajkowski  <[email protected]>
 
         [WK2][EFL] Text Checker's settings refactor

Modified: trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp (148670 => 148671)


--- trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp	2013-04-18 13:04:15 UTC (rev 148670)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp	2013-04-18 13:08:22 UTC (rev 148671)
@@ -106,7 +106,7 @@
 
     bool isDone() const { return m_done; }
 
-    bool setDone()
+    void setDone()
     {
         if (m_timer) {
             ecore_timer_del(m_timer);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to