Title: [128275] trunk/Source/WebCore
Revision
128275
Author
[email protected]
Date
2012-09-12 01:18:23 -0700 (Wed, 12 Sep 2012)

Log Message

Unreviewed EFL build fix.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128274 => 128275)


--- trunk/Source/WebCore/ChangeLog	2012-09-12 07:55:48 UTC (rev 128274)
+++ trunk/Source/WebCore/ChangeLog	2012-09-12 08:18:23 UTC (rev 128275)
@@ -1,5 +1,12 @@
 2012-09-12  Kenneth Rohde Christiansen  <[email protected]>
 
+        Unreviewed EFL build fix.
+
+        * platform/efl/RenderThemeEfl.cpp:
+        (WebCore::RenderThemeEfl::themePath):
+
+2012-09-12  Kenneth Rohde Christiansen  <[email protected]>
+
         [EFL] Clean up the RenderTheme Edje caching
         https://bugs.webkit.org/show_bug.cgi?id=96016
 

Modified: trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp (128274 => 128275)


--- trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-09-12 07:55:48 UTC (rev 128274)
+++ trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp	2012-09-12 08:18:23 UTC (rev 128275)
@@ -495,10 +495,10 @@
 
 String RenderThemeEfl::themePath() const
 {
-#if !NDEBUG
+#ifndef NDEBUG
     if (m_edje) {
         const char* path;
-        edje_object_file_get(o, &path, 0);
+        edje_object_file_get(m_edje, &path, 0);
         ASSERT(m_themePath == path);
     }
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to