summaryrefslogtreecommitdiff
path: root/sfx2/source/inc/preview.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/inc/preview.hxx')
-rw-r--r--sfx2/source/inc/preview.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/inc/preview.hxx b/sfx2/source/inc/preview.hxx
index adc5de27dcc3..cbd4da7478a9 100644
--- a/sfx2/source/inc/preview.hxx
+++ b/sfx2/source/inc/preview.hxx
@@ -26,12 +26,12 @@
class SfxObjectShell;
class GDIMetaFile;
-class SfxPreviewBase_Impl : public Window
+class SfxPreviewBase_Impl : public vcl::Window
{
protected:
::boost::shared_ptr<GDIMetaFile> pMetaFile;
public:
- SfxPreviewBase_Impl(Window* pParent, WinBits nStyle);
+ SfxPreviewBase_Impl(vcl::Window* pParent, WinBits nStyle);
void SetObjectShell( SfxObjectShell* pObj );
virtual void Resize() SAL_OVERRIDE;
virtual Size GetOptimalSize() const SAL_OVERRIDE;
@@ -42,12 +42,12 @@ class SfxPreviewWin_Impl: public SfxPreviewBase_Impl
protected:
virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
public:
- SfxPreviewWin_Impl(Window* pParent, WinBits nStyle)
+ SfxPreviewWin_Impl(vcl::Window* pParent, WinBits nStyle)
: SfxPreviewBase_Impl(pParent, nStyle)
{
}
static void ImpPaint(
- const Rectangle& rRect, GDIMetaFile* pFile, Window* pWindow );
+ const Rectangle& rRect, GDIMetaFile* pFile, vcl::Window* pWindow );
};
#endif