diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/OutlineView.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slideshow/showwin.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slideshow/slideshowimpl.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/outlview.cxx | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/inc/OutlineView.hxx b/sd/source/ui/inc/OutlineView.hxx index 030d6c9283ed..68756dc14e73 100644 --- a/sd/source/ui/inc/OutlineView.hxx +++ b/sd/source/ui/inc/OutlineView.hxx @@ -77,7 +77,7 @@ public: static SdrTextObj* CreateTitleTextObject(SdPage* pPage); static SdrTextObj* CreateOutlineTextObject(SdPage* pPage); - virtual void AddWindowToPaintView(OutputDevice* pWin) SAL_OVERRIDE; + virtual void AddWindowToPaintView(OutputDevice* pWin, vcl::Window* pWindow) SAL_OVERRIDE; virtual void DeleteWindowFromPaintView(OutputDevice* pWin) SAL_OVERRIDE; OutlinerView* GetViewByWindow(vcl::Window* pWin) const; diff --git a/sd/source/ui/slideshow/showwin.cxx b/sd/source/ui/slideshow/showwin.cxx index fbf685fbfda2..a0c3745d0c8a 100644 --- a/sd/source/ui/slideshow/showwin.cxx +++ b/sd/source/ui/slideshow/showwin.cxx @@ -614,7 +614,7 @@ void ShowWindow::DeleteWindowFromPaintView() void ShowWindow::AddWindowToPaintView() { if( mpViewShell->GetView() ) - mpViewShell->GetView()->AddWindowToPaintView( this ); + mpViewShell->GetView()->AddWindowToPaintView( this, 0 ); sal_uInt16 nChild = GetChildCount(); while( nChild-- ) diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx index 20cf5cfe3c30..6abb3ac2963b 100644 --- a/sd/source/ui/slideshow/slideshowimpl.cxx +++ b/sd/source/ui/slideshow/slideshowimpl.cxx @@ -812,7 +812,7 @@ bool SlideshowImpl::startPreview( if( mpView ) { - mpView->AddWindowToPaintView( mpShowWindow ); + mpView->AddWindowToPaintView( mpShowWindow, 0 ); mpView->SetAnimationPause( true ); } @@ -1006,7 +1006,7 @@ bool SlideshowImpl::startShow( PresentationSettingsEx* pPresSettings ) if( mpView ) { - mpView->AddWindowToPaintView( mpShowWindow ); + mpView->AddWindowToPaintView( mpShowWindow, 0 ); mpView->SetAnimationPause( true ); } diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx index 7d985036bcec..59e790cdff6b 100644 --- a/sd/source/ui/view/outlview.cxx +++ b/sd/source/ui/view/outlview.cxx @@ -235,7 +235,7 @@ void OutlineView::Paint(const Rectangle& rRect, ::sd::Window* pWin) } } -void OutlineView::AddWindowToPaintView(OutputDevice* pWin) +void OutlineView::AddWindowToPaintView(OutputDevice* pWin, vcl::Window* pWindow) { bool bAdded = false; bool bValidArea = false; @@ -269,7 +269,7 @@ void OutlineView::AddWindowToPaintView(OutputDevice* pWin) // white background in Outliner pWin->SetBackground( Wallpaper( aWhiteColor ) ); - ::sd::View::AddWindowToPaintView(pWin); + ::sd::View::AddWindowToPaintView(pWin, pWindow); } void OutlineView::DeleteWindowFromPaintView(OutputDevice* pWin) |