summaryrefslogtreecommitdiff
path: root/sd/source/ui/unoidl/DrawController.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-05-15 11:14:21 +0000
committerKurt Zenker <kz@openoffice.org>2007-05-15 11:14:21 +0000
commita2e89bf9552b5dc722400281083a8be2f12e865b (patch)
tree1bf38c864de9b184bde01d0c7f9ece57cbcb286c /sd/source/ui/unoidl/DrawController.cxx
parent02b9eab498c9953ffba525a885139f903866cb63 (diff)
#i77312# fix build break
Diffstat (limited to 'sd/source/ui/unoidl/DrawController.cxx')
-rw-r--r--sd/source/ui/unoidl/DrawController.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx
index 92e68b3f45b4..cb2d535436c8 100644
--- a/sd/source/ui/unoidl/DrawController.cxx
+++ b/sd/source/ui/unoidl/DrawController.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DrawController.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: kz $ $Date: 2007-05-10 09:44:40 $
+ * last change: $Author: kz $ $Date: 2007-05-15 12:14:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1059,9 +1059,9 @@ uno::Reference< form::XFormController > SAL_CALL DrawController::getFormControll
{
OGuard aGuard( Application::GetSolarMutex() );
- FmFormShell* pFormShell = mrBase.GetFormShellManager().GetFormShell();
- SdrView* pSdrView = mrBase.GetDrawView();
- ViewShell* pViewShell = mrBase.GetMainViewShell();
+ FmFormShell* pFormShell = mpBase->GetFormShellManager().GetFormShell();
+ SdrView* pSdrView = mpBase->GetDrawView();
+ ::boost::shared_ptr<ViewShell> pViewShell = mpBase->GetMainViewShell();
::sd::Window* pWindow = pViewShell ? pViewShell->GetActiveWindow() : NULL;
uno::Reference< form::XFormController > xController( NULL );
@@ -1076,7 +1076,7 @@ uno::Reference< form::XFormController > SAL_CALL DrawController::getFormControll
sal_Bool bIsDesignMode = sal_True;
- FmFormShell* pFormShell = mrBase.GetFormShellManager().GetFormShell();
+ FmFormShell* pFormShell = mpBase->GetFormShellManager().GetFormShell();
if ( pFormShell )
bIsDesignMode = pFormShell->IsDesignMode();
@@ -1087,7 +1087,7 @@ void SAL_CALL DrawController::setFormDesignMode( ::sal_Bool _DesignMode ) throw
{
OGuard aGuard( Application::GetSolarMutex() );
- FmFormShell* pFormShell = mrBase.GetFormShellManager().GetFormShell();
+ FmFormShell* pFormShell = mpBase->GetFormShellManager().GetFormShell();
if ( pFormShell )
pFormShell->SetDesignMode( _DesignMode );
}
@@ -1096,9 +1096,9 @@ uno::Reference< awt::XControl > SAL_CALL DrawController::getControl( const uno::
{
OGuard aGuard( Application::GetSolarMutex() );
- FmFormShell* pFormShell = mrBase.GetFormShellManager().GetFormShell();
- SdrView* pSdrView = mrBase.GetDrawView();
- ViewShell* pViewShell = mrBase.GetMainViewShell();
+ FmFormShell* pFormShell = mpBase->GetFormShellManager().GetFormShell();
+ SdrView* pSdrView = mpBase->GetDrawView();
+ ::boost::shared_ptr<ViewShell> pViewShell = mpBase->GetMainViewShell();
::sd::Window* pWindow = pViewShell ? pViewShell->GetActiveWindow() : NULL;
uno::Reference< awt::XControl > xControl( NULL );