Title: [128350] trunk/Source/WebCore
Revision
128350
Author
[email protected]
Date
2012-09-12 12:41:46 -0700 (Wed, 12 Sep 2012)

Log Message

[EFL] Compilation error in RenderThemeEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=96540

Unreviewed build fix.

Fix compilation error in RenderThemeEfl.cpp when building
in debug mode.

Patch by Christophe Dumez <[email protected]> on 2012-09-12

* platform/efl/RenderThemeEfl.h:
(WebCore::RenderThemeEfl::canvas):
(WebCore::RenderThemeEfl::edje):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128349 => 128350)


--- trunk/Source/WebCore/ChangeLog	2012-09-12 19:25:52 UTC (rev 128349)
+++ trunk/Source/WebCore/ChangeLog	2012-09-12 19:41:46 UTC (rev 128350)
@@ -1,3 +1,17 @@
+2012-09-12  Christophe Dumez  <[email protected]>
+
+        [EFL] Compilation error in RenderThemeEfl.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=96540
+
+        Unreviewed build fix.
+
+        Fix compilation error in RenderThemeEfl.cpp when building
+        in debug mode.
+
+        * platform/efl/RenderThemeEfl.h:
+        (WebCore::RenderThemeEfl::canvas):
+        (WebCore::RenderThemeEfl::edje):
+
 2012-09-12  Sami Kyostila  <[email protected]>
 
         Rename OVERFLOW_SCROLLING as ACCELERATED_OVERFLOW_SCROLLING

Modified: trunk/Source/WebCore/platform/efl/RenderThemeEfl.h (128349 => 128350)


--- trunk/Source/WebCore/platform/efl/RenderThemeEfl.h	2012-09-12 19:25:52 UTC (rev 128349)
+++ trunk/Source/WebCore/platform/efl/RenderThemeEfl.h	2012-09-12 19:41:46 UTC (rev 128350)
@@ -222,8 +222,8 @@
         return m_edje || (!m_themePath.isEmpty() && const_cast<RenderThemeEfl*>(this)->loadTheme());
     }
 
-    ALWAYS_INLINE Ecore_Evas* canvas() { return m_canvas.get(); }
-    ALWAYS_INLINE Evas_Object* edje() { return m_edje.get(); }
+    ALWAYS_INLINE Ecore_Evas* canvas() const { return m_canvas.get(); }
+    ALWAYS_INLINE Evas_Object* edje() const { return m_edje.get(); }
 
     void applyPartDescriptionsFrom(const String& themePath);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to