Title: [194439] trunk/Source/WebCore
- Revision
- 194439
- Author
- [email protected]
- Date
- 2015-12-29 17:03:36 -0800 (Tue, 29 Dec 2015)
Log Message
Fix the Windows build.
* page/win/FrameCGWin.cpp:
(WebCore::drawRectIntoContext):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (194438 => 194439)
--- trunk/Source/WebCore/ChangeLog 2015-12-30 00:29:36 UTC (rev 194438)
+++ trunk/Source/WebCore/ChangeLog 2015-12-30 01:03:36 UTC (rev 194439)
@@ -1,5 +1,12 @@
2015-12-29 Simon Fraser <[email protected]>
+ Fix the Windows build.
+
+ * page/win/FrameCGWin.cpp:
+ (WebCore::drawRectIntoContext):
+
+2015-12-29 Simon Fraser <[email protected]>
+
Remove ScrollView::scrollOffset() in preparation for scrollOffset vs. scrollPosition clarification
https://bugs.webkit.org/show_bug.cgi?id=152589
Modified: trunk/Source/WebCore/page/win/FrameCGWin.cpp (194438 => 194439)
--- trunk/Source/WebCore/page/win/FrameCGWin.cpp 2015-12-30 00:29:36 UTC (rev 194438)
+++ trunk/Source/WebCore/page/win/FrameCGWin.cpp 2015-12-30 01:03:36 UTC (rev 194439)
@@ -41,7 +41,7 @@
static void drawRectIntoContext(IntRect rect, FrameView* view, GraphicsContext& gc)
{
- IntSize scrollPosition = view->scrollPosition();
+ IntPoint scrollPosition = view->scrollPosition();
rect.move(-scrollPosition.x(), -scrollPosition.y());
rect = view->convertToContainingWindow(rect);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes