diff options
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/inc/ClientView.hxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/clview.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/inc/ClientView.hxx b/sd/source/ui/inc/ClientView.hxx index a7bb20b51bf2..a616a6252bce 100644 --- a/sd/source/ui/inc/ClientView.hxx +++ b/sd/source/ui/inc/ClientView.hxx @@ -38,8 +38,8 @@ public: /* if the view should not do a Invalidate() on the windows, you have to override the following two methods and do something different */ - virtual void InvalidateOneWin(vcl::Window& rWin) override; - virtual void InvalidateOneWin(vcl::Window& rWin, const ::tools::Rectangle& rRect) override; + virtual void InvalidateOneWin(OutputDevice& rWin) override; + virtual void InvalidateOneWin(OutputDevice& rWin, const ::tools::Rectangle& rRect) override; }; } // end of namespace sd diff --git a/sd/source/ui/view/clview.cxx b/sd/source/ui/view/clview.cxx index 29905c83909f..a73bd292314f 100644 --- a/sd/source/ui/view/clview.cxx +++ b/sd/source/ui/view/clview.cxx @@ -48,7 +48,7 @@ ClientView::~ClientView() * to be overridden and properly handled. */ -void ClientView::InvalidateOneWin(vcl::Window& rWin) +void ClientView::InvalidateOneWin(OutputDevice& rWin) { vcl::Region aRegion; CompleteRedraw(&rWin, aRegion); @@ -59,7 +59,7 @@ void ClientView::InvalidateOneWin(vcl::Window& rWin) * to be overridden and properly handled. */ -void ClientView::InvalidateOneWin(vcl::Window& rWin, const ::tools::Rectangle& rRect) +void ClientView::InvalidateOneWin(OutputDevice& rWin, const ::tools::Rectangle& rRect) { CompleteRedraw(&rWin, vcl::Region(rRect)); } |