Title: [94740] trunk/Source/WebCore/rendering/RenderBlock.cpp
Revision
94740
Author
[email protected]
Date
2011-09-07 18:31:26 -0700 (Wed, 07 Sep 2011)

Log Message

Fix my commit per darin's suggestion.

Modified Paths


Diff

Modified: trunk/Source/WebCore/rendering/RenderBlock.cpp (94739 => 94740)


--- trunk/Source/WebCore/rendering/RenderBlock.cpp	2011-09-08 01:27:06 UTC (rev 94739)
+++ trunk/Source/WebCore/rendering/RenderBlock.cpp	2011-09-08 01:31:26 UTC (rev 94740)
@@ -4635,9 +4635,9 @@
         LayoutRect colRect = columnRectAt(colInfo, startColumn);
         LayoutRect repaintRect = r;
         if (isHorizontal)
-            repaintRect.move(colRect.x() - logicalLeftOffset, - static_cast<singed>(startColumn) * colHeight);
+            repaintRect.move(colRect.x() - logicalLeftOffset, - static_cast<int>(startColumn) * colHeight);
         else
-            repaintRect.move(- static_cast<signed>(startColumn) * colHeight, colRect.y() - logicalLeftOffset);
+            repaintRect.move(- static_cast<int>(startColumn) * colHeight, colRect.y() - logicalLeftOffset);
         repaintRect.intersect(colRect);
         result.unite(repaintRect);
     } else {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to