summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/childwin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl/childwin.cxx')
-rw-r--r--sfx2/source/appl/childwin.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx
index cc56952b40a4..65d887456b0c 100644
--- a/sfx2/source/appl/childwin.cxx
+++ b/sfx2/source/appl/childwin.cxx
@@ -142,7 +142,7 @@ bool GetSplitSizeFromString( const OUString& rStr, Size& rSize )
}
-SfxChildWindow::SfxChildWindow(Window *pParentWindow, sal_uInt16 nId)
+SfxChildWindow::SfxChildWindow(vcl::Window *pParentWindow, sal_uInt16 nId)
: pParent(pParentWindow)
, nType(nId)
, eChildAlignment(SFX_ALIGN_NOALIGNMENT)
@@ -191,7 +191,7 @@ SfxChildWindow::~SfxChildWindow()
SfxChildWindow* SfxChildWindow::CreateChildWindow( sal_uInt16 nId,
- Window *pParent, SfxBindings* pBindings, SfxChildWinInfo& rInfo)
+ vcl::Window *pParent, SfxBindings* pBindings, SfxChildWinInfo& rInfo)
{
SfxChildWindow *pChild=0;
SfxChildWinFactory* pFact=0;
@@ -510,7 +510,7 @@ SfxChildWindowContext::~SfxChildWindowContext()
FloatingWindow* SfxChildWindowContext::GetFloatingWindow() const
{
- Window *pParent = pWindow->GetParent();
+ vcl::Window *pParent = pWindow->GetParent();
if (pParent->GetType() == WINDOW_DOCKINGWINDOW || pParent->GetType() == WINDOW_TOOLBOX)
{
return ((DockingWindow*)pParent)->GetFloatingWindow();
@@ -673,7 +673,7 @@ void SfxChildWindow::Show( sal_uInt16 nFlags )
}
}
-Window* SfxChildWindow::GetContextWindow( SfxModule *pModule ) const
+vcl::Window* SfxChildWindow::GetContextWindow( SfxModule *pModule ) const
{
return pModule == pImp->pContextModule && pContext ? pContext->GetWindow(): 0;
}