From aff5b3bfd9f2ffec52cc065921e354eadcc5a2e8 Mon Sep 17 00:00:00 2001 From: hyatt Date: Wed, 4 Oct 2006 08:21:56 +0000 Subject: [PATCH] Fix more win32 bustage. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16775 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebCore/platform/win/TemporaryLinkStubs.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WebCore/platform/win/TemporaryLinkStubs.cpp b/WebCore/platform/win/TemporaryLinkStubs.cpp index 2d862366c7f..28e9a655f74 100644 --- a/WebCore/platform/win/TemporaryLinkStubs.cpp +++ b/WebCore/platform/win/TemporaryLinkStubs.cpp @@ -95,6 +95,8 @@ void Widget::setCapturingMouse(bool capturingMouse) { } Widget* Widget::capturingTarget() { return this; } Widget* Widget::capturingChild() { return 0; } void Widget::setCapturingChild(Widget* w) {} +IntPoint Widget::convertChildToSelf(const Widget*, const IntPoint& p) const { return p; } +IntPoint Widget::convertSelfToChild(const Widget*, const IntPoint& p) const { return p; } JavaAppletWidget::JavaAppletWidget(IntSize const&,Element*,WTF::HashMap const&) { notImplemented(); } @@ -282,7 +284,8 @@ void ScrollView::wheelEvent(PlatformWheelEvent&) { } void ScrollView::themeChanged() { } IntPoint ScrollView::convertChildToSelf(const Widget*, const IntPoint& p) const { return p; } IntPoint ScrollView::convertSelfToChild(const Widget*, const IntPoint& p) const { return p; } - +void ScrollView::scrolled() const {}; + void GraphicsContext::setShadow(IntSize const&,int,Color const&) { } void GraphicsContext::clearShadow() { } void GraphicsContext::beginTransparencyLayer(float) { } -- GitLab