Title: [163260] trunk/Source/WebCore
Revision
163260
Author
[email protected]
Date
2014-02-01 23:45:32 -0800 (Sat, 01 Feb 2014)

Log Message

Subpixel rendering: LayoutUnit operator++ is broken.
https://bugs.webkit.org/show_bug.cgi?id=128056

Reviewed by Darin Adler.

Add pre-increment operator++.

* platform/LayoutUnit.h:
(WebCore::LayoutUnit::operator++):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163259 => 163260)


--- trunk/Source/WebCore/ChangeLog	2014-02-02 06:38:51 UTC (rev 163259)
+++ trunk/Source/WebCore/ChangeLog	2014-02-02 07:45:32 UTC (rev 163260)
@@ -1,3 +1,15 @@
+2014-02-01  Zalan Bujtas  <[email protected]>
+
+        Subpixel rendering: LayoutUnit operator++ is broken.
+        https://bugs.webkit.org/show_bug.cgi?id=128056
+
+        Reviewed by Darin Adler.
+
+        Add pre-increment operator++.
+
+        * platform/LayoutUnit.h:
+        (WebCore::LayoutUnit::operator++):
+
 2014-02-01  Darin Adler  <[email protected]>
 
         More characters -> deprecatedCharacters (based on more EWS complaints)

Modified: trunk/Source/WebCore/platform/LayoutUnit.h (163259 => 163260)


--- trunk/Source/WebCore/platform/LayoutUnit.h	2014-02-02 06:38:51 UTC (rev 163259)
+++ trunk/Source/WebCore/platform/LayoutUnit.h	2014-02-02 07:45:32 UTC (rev 163260)
@@ -190,7 +190,7 @@
     operator double() const { return toDouble(); }
     operator bool() const { return m_value; }
 
-    LayoutUnit operator++(int)
+    LayoutUnit& operator++()
     {
         m_value += kEffectiveFixedPointDenominator;
         return *this;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to