Title: [93890] trunk/Source/WebCore
Revision
93890
Author
[email protected]
Date
2011-08-26 10:59:29 -0700 (Fri, 26 Aug 2011)

Log Message

[EFL] Do not log an error if a fallback cursor cannot be found.
https://bugs.webkit.org/show_bug.cgi?id=67037

Patch by Raphael Kubo da Costa <[email protected]> on 2011-08-26
Reviewed by Gustavo Noronha Silva.

Ecore_X does not necessarily have to be used (DumpRenderTree does not
use it, for example), so showing an error message here is bogus.

No new tests, as it just removes erroneous error messages from
when running DRT with existing tests.

* platform/efl/WidgetEfl.cpp:
(WebCore::Widget::applyFallbackCursor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (93889 => 93890)


--- trunk/Source/WebCore/ChangeLog	2011-08-26 17:53:18 UTC (rev 93889)
+++ trunk/Source/WebCore/ChangeLog	2011-08-26 17:59:29 UTC (rev 93890)
@@ -1,3 +1,19 @@
+2011-08-26  Raphael Kubo da Costa  <[email protected]>
+
+        [EFL] Do not log an error if a fallback cursor cannot be found.
+        https://bugs.webkit.org/show_bug.cgi?id=67037
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Ecore_X does not necessarily have to be used (DumpRenderTree does not
+        use it, for example), so showing an error message here is bogus.
+
+        No new tests, as it just removes erroneous error messages from
+        when running DRT with existing tests.
+
+        * platform/efl/WidgetEfl.cpp:
+        (WebCore::Widget::applyFallbackCursor):
+
 2011-08-26  Nate Chapin  <[email protected]>
 
         Change a bunch of nondescript bools to

Modified: trunk/Source/WebCore/platform/efl/WidgetEfl.cpp (93889 => 93890)


--- trunk/Source/WebCore/platform/efl/WidgetEfl.cpp	2011-08-26 17:53:18 UTC (rev 93889)
+++ trunk/Source/WebCore/platform/efl/WidgetEfl.cpp	2011-08-26 17:59:29 UTC (rev 93890)
@@ -223,8 +223,6 @@
         return;
     }
 #endif
-    LOG_ERROR("Ooops, no fallback to set cursor %s!\n",
-              m_data->m_cursorGroup.utf8().data());
 }
 
 void Widget::applyCursor()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to