diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-28 15:38:06 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-29 06:26:47 +0000 |
commit | 913a2d3692f0dc36c41bfeca2cad7e936b189a30 (patch) | |
tree | 9143f8a8e7d2e89ed4a18a21edab1f348039c3f4 /sfx2/source/dialog/partwnd.cxx | |
parent | e5c8de332a687b682b596f1a917030185909dd1f (diff) |
com::sun::star->css in sfx2
Change-Id: I20d9b45e4b28c2a4a511774d3154aceb0471d197
Reviewed-on: https://gerrit.libreoffice.org/19643
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2/source/dialog/partwnd.cxx')
-rw-r--r-- | sfx2/source/dialog/partwnd.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/partwnd.cxx b/sfx2/source/dialog/partwnd.cxx index 35b895e3c862..d5f738f2b131 100644 --- a/sfx2/source/dialog/partwnd.cxx +++ b/sfx2/source/dialog/partwnd.cxx @@ -74,7 +74,7 @@ SfxPartChildWnd_Impl::SfxPartChildWnd_Impl SfxPartChildWnd_Impl::~SfxPartChildWnd_Impl() { - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame = GetFrame(); + css::uno::Reference< css::frame::XFrame > xFrame = GetFrame(); // If xFrame=NULL release pMgr! Because this window lives longer then the manager! // In these case we got a xFrame->dispose() call from outside ... and has release our @@ -159,10 +159,10 @@ bool SfxPartDockWnd_Impl::QueryClose() SfxChildWindow* pChild = GetChildWindow_Impl(); if( pChild ) { - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame = pChild->GetFrame(); + css::uno::Reference< css::frame::XFrame > xFrame = pChild->GetFrame(); if( xFrame.is() ) { - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController > xCtrl = xFrame->getController(); + css::uno::Reference< css::frame::XController > xCtrl = xFrame->getController(); if( xCtrl.is() ) bClose = xCtrl->suspend( sal_True ); } @@ -180,7 +180,7 @@ bool SfxPartDockWnd_Impl::Notify( NotifyEvent& rEvt ) SfxChildWindow* pChild = GetChildWindow_Impl(); if( pChild ) { - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame = pChild->GetFrame(); + css::uno::Reference< css::frame::XFrame > xFrame = pChild->GetFrame(); if( xFrame.is() ) xFrame->activate(); } |