Title: [125569] trunk/Source/WebCore
Revision
125569
Author
[email protected]
Date
2012-08-14 09:12:17 -0700 (Tue, 14 Aug 2012)

Log Message

[EFL] Do not warn when the default theme is not found
https://bugs.webkit.org/show_bug.cgi?id=93968

Patch by Thiago Marcos P. Santos <[email protected]> on 2012-08-14
Reviewed by Kenneth Rohde Christiansen.

Even if you are using a custom theme, we always try to load first the
theme at the default path (that may or may not exist). In the case it
doesn't exist and you have a custom theme, we were always getting a
misleading error message.

* platform/efl/RenderThemeEfl.cpp:
(WebCore::RenderThemeEfl::createEdje):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (125568 => 125569)


--- trunk/Source/WebCore/ChangeLog	2012-08-14 16:06:43 UTC (rev 125568)
+++ trunk/Source/WebCore/ChangeLog	2012-08-14 16:12:17 UTC (rev 125569)
@@ -1,3 +1,18 @@
+2012-08-14  Thiago Marcos P. Santos  <[email protected]>
+
+        [EFL] Do not warn when the default theme is not found
+        https://bugs.webkit.org/show_bug.cgi?id=93968
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Even if you are using a custom theme, we always try to load first the
+        theme at the default path (that may or may not exist). In the case it
+        doesn't exist and you have a custom theme, we were always getting a
+        misleading error message.
+
+        * platform/efl/RenderThemeEfl.cpp:
+        (WebCore::RenderThemeEfl::createEdje):
+
 2012-08-14  Joshua Bell  <[email protected]>
 
         IndexedDB: Pass cursor continue results back in callback

Modified: trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp (125568 => 125569)


--- trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-08-14 16:06:43 UTC (rev 125568)
+++ trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-08-14 16:12:17 UTC (rev 125569)
@@ -452,8 +452,6 @@
         else if (!edje_object_file_set(m_edje, m_themePath.utf8().data(), "webkit/base")) {
             Edje_Load_Error err = edje_object_load_error_get(m_edje);
             const char* errmsg = edje_load_error_str(err);
-            EINA_LOG_ERR("Could not load 'webkit/base' from theme %s: %s",
-                         m_themePath.utf8().data(), errmsg);
             evas_object_del(m_edje);
             m_edje = 0;
         } else {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to