diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-06-05 00:27:48 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-06 07:12:59 +0000 |
commit | d2e0d10d481f76e142635463bdccb6bc6706cc13 (patch) | |
tree | d48219085685d419f25745e769b7bac5e11d8837 /sfx2/source/appl/appmisc.cxx | |
parent | 738aefb51aa034188a5342b4b04e15629038e087 (diff) |
tdf#89329: use unique_ptr for pImpl in app
Change-Id: Ia4e53f6e2973c1dd439e22bd93329bfc6e21ba75
Reviewed-on: https://gerrit.libreoffice.org/25908
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2/source/appl/appmisc.cxx')
-rw-r--r-- | sfx2/source/appl/appmisc.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx index 3e3b419f9a85..bf6a9a151b62 100644 --- a/sfx2/source/appl/appmisc.cxx +++ b/sfx2/source/appl/appmisc.cxx @@ -116,7 +116,7 @@ void SfxApplication::InitInterface_Impl() */ SfxProgress* SfxApplication::GetProgress() const { - return pAppData_Impl->pProgress; + return pImpl->pProgress; } SfxModule* SfxApplication::GetModule_Impl() @@ -133,9 +133,9 @@ SfxModule* SfxApplication::GetModule_Impl() } } -bool SfxApplication::IsDowning() const { return pAppData_Impl->bDowning; } -SfxDispatcher* SfxApplication::GetAppDispatcher_Impl() { return pAppData_Impl->pAppDispat; } -SfxSlotPool& SfxApplication::GetAppSlotPool_Impl() const { return *pAppData_Impl->pSlotPool; } +bool SfxApplication::IsDowning() const { return pImpl->bDowning; } +SfxDispatcher* SfxApplication::GetAppDispatcher_Impl() { return pImpl->pAppDispat; } +SfxSlotPool& SfxApplication::GetAppSlotPool_Impl() const { return *pImpl->pSlotPool; } bool SfxApplication::loadBrandSvg(const char *pName, BitmapEx &rBitmap, int nWidth) { |