Title: [89048] trunk/Source/WebCore
Revision
89048
Author
dglaz...@chromium.org
Date
2011-06-16 11:12:24 -0700 (Thu, 16 Jun 2011)

Log Message

2011-06-16  Dimitri Glazkov  <dglaz...@chromium.org>

        Clang fix after r89039.

        * rendering/RenderThemeMac.h: Removed spurious constipation.
        * rendering/RenderThemeMac.mm:
        (WebCore::RenderThemeMac::fileListNameForWidth): Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89047 => 89048)


--- trunk/Source/WebCore/ChangeLog	2011-06-16 18:10:20 UTC (rev 89047)
+++ trunk/Source/WebCore/ChangeLog	2011-06-16 18:12:24 UTC (rev 89048)
@@ -1,3 +1,11 @@
+2011-06-16  Dimitri Glazkov  <dglaz...@chromium.org>
+
+        Clang fix after r89039.
+
+        * rendering/RenderThemeMac.h: Removed spurious constipation.
+        * rendering/RenderThemeMac.mm:
+        (WebCore::RenderThemeMac::fileListNameForWidth): Ditto.
+
 2011-06-16  Sheriff Bot  <webkit.review....@gmail.com>
 
         Unreviewed, rolling out r89026.

Modified: trunk/Source/WebCore/rendering/RenderThemeMac.h (89047 => 89048)


--- trunk/Source/WebCore/rendering/RenderThemeMac.h	2011-06-16 18:10:20 UTC (rev 89047)
+++ trunk/Source/WebCore/rendering/RenderThemeMac.h	2011-06-16 18:12:24 UTC (rev 89048)
@@ -177,7 +177,7 @@
     virtual bool shouldShowPlaceholderWhenFocused() const;
 
 private:
-    virtual String fileListNameForWidth(const Vector<String>& filenames, const Font&, int width) const;
+    virtual String fileListNameForWidth(const Vector<String>& filenames, const Font&, int width);
 
     IntRect inflateRect(const IntRect&, const IntSize&, const int* margins, float zoomLevel = 1.0f) const;
 

Modified: trunk/Source/WebCore/rendering/RenderThemeMac.mm (89047 => 89048)


--- trunk/Source/WebCore/rendering/RenderThemeMac.mm	2011-06-16 18:10:20 UTC (rev 89047)
+++ trunk/Source/WebCore/rendering/RenderThemeMac.mm	2011-06-16 18:12:24 UTC (rev 89048)
@@ -2051,7 +2051,7 @@
     return m_sliderThumbVertical.get();
 }
 
-String RenderThemeMac::fileListNameForWidth(const Vector<String>& filenames, const Font& font, int width) const
+String RenderThemeMac::fileListNameForWidth(const Vector<String>& filenames, const Font& font, int width)
 {
     if (width <= 0)
         return String();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to