summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/ViewShellManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/ViewShellManager.cxx')
-rw-r--r--sd/source/ui/view/ViewShellManager.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/view/ViewShellManager.cxx b/sd/source/ui/view/ViewShellManager.cxx
index f52e89bb5776..d2508afe311b 100644
--- a/sd/source/ui/view/ViewShellManager.cxx
+++ b/sd/source/ui/view/ViewShellManager.cxx
@@ -59,7 +59,7 @@ public:
ShellDescriptor (const ShellDescriptor& rDescriptor);
ShellDescriptor& operator= (const ShellDescriptor& rDescriptor);
bool IsMainViewShell (void) const;
- ::Window* GetWindow (void) const;
+ ::vcl::Window* GetWindow (void) const;
};
/** This functor can be used to search for a shell in an STL container when the
@@ -218,7 +218,7 @@ private:
ShellDescriptor CreateSubShell (
SfxShell* pShell,
ShellId nShellId,
- ::Window* pParentWindow,
+ ::vcl::Window* pParentWindow,
FrameView* pFrameView);
void DestroyViewShell (ShellDescriptor& rDescriptor);
void DestroySubShell (
@@ -417,7 +417,7 @@ void ViewShellManager::Implementation::ActivateViewShell (ViewShell* pViewShell)
// window can be moved to the top of the shell stack.
if (aResult.mpShell != NULL)
{
- ::Window* pWindow = aResult.GetWindow();
+ ::vcl::Window* pWindow = aResult.GetWindow();
if (pWindow != NULL)
{
pWindow->AddEventListener(
@@ -966,7 +966,7 @@ IMPL_LINK(ViewShellManager::Implementation, WindowEventHandler, VclWindowEvent*,
{
if (pEvent != NULL)
{
- ::Window* pEventWindow
+ ::vcl::Window* pEventWindow
= static_cast<VclWindowEvent*>(pEvent)->GetWindow();
switch (pEvent->GetId())
@@ -977,7 +977,7 @@ IMPL_LINK(ViewShellManager::Implementation, WindowEventHandler, VclWindowEvent*,
aI!=maActiveViewShells.end();
aI++)
{
- if (pEventWindow == static_cast< ::Window*>(aI->GetWindow()))
+ if (pEventWindow == static_cast< ::vcl::Window*>(aI->GetWindow()))
{
MoveToTop(*aI->mpShell);
break;
@@ -1013,7 +1013,7 @@ IMPL_LINK(ViewShellManager::Implementation, WindowEventHandler, VclWindowEvent*,
ShellDescriptor ViewShellManager::Implementation::CreateSubShell (
SfxShell* pParentShell,
ShellId nShellId,
- ::Window* pParentWindow,
+ ::vcl::Window* pParentWindow,
FrameView* pFrameView)
{
::osl::MutexGuard aGuard (maMutex);
@@ -1050,7 +1050,7 @@ void ViewShellManager::Implementation::DestroyViewShell (
if (rDescriptor.mbIsListenerAddedToWindow)
{
rDescriptor.mbIsListenerAddedToWindow = false;
- ::Window* pWindow = rDescriptor.GetWindow();
+ ::vcl::Window* pWindow = rDescriptor.GetWindow();
if (pWindow != NULL)
{
pWindow->RemoveEventListener(
@@ -1237,7 +1237,7 @@ bool ShellDescriptor::IsMainViewShell (void) const
return false;
}
-::Window* ShellDescriptor::GetWindow (void) const
+vcl::Window* ShellDescriptor::GetWindow (void) const
{
ViewShell* pViewShell = dynamic_cast<ViewShell*>(mpShell);
if (pViewShell != NULL)