summaryrefslogtreecommitdiff
path: root/slideshow/test/demoshow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/test/demoshow.cxx')
-rw-r--r--slideshow/test/demoshow.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx
index 7674970d107a..e3409e59e226 100644
--- a/slideshow/test/demoshow.cxx
+++ b/slideshow/test/demoshow.cxx
@@ -305,10 +305,10 @@ public:
virtual sal_uInt16 Exception( sal_uInt16 nError );
};
-class ChildWindow : public Window
+class ChildWindow : public vcl::Window
{
public:
- ChildWindow( Window* pParent );
+ ChildWindow( vcl::Window* pParent );
virtual ~ChildWindow();
virtual void Paint( const Rectangle& rRect );
virtual void Resize();
@@ -322,7 +322,7 @@ private:
uno::Reference< presentation::XSlideShow > mxShow;
};
-ChildWindow::ChildWindow( Window* pParent ) :
+ChildWindow::ChildWindow( vcl::Window* pParent ) :
Window(pParent, WB_CLIPCHILDREN | WB_BORDER| WB_3DLOOK ),
mpView(),
mxShow()
@@ -402,7 +402,7 @@ private:
};
DemoWindow::DemoWindow() :
- Dialog((Window*)NULL),
+ Dialog((vcl::Window*)NULL),
maLeftChild( this ),
maRightTopChild( this ),
maRightBottomChild( this ),