summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appreg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-08-30 21:00:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-31 08:11:05 +0200
commit48cff413e21830e3da4df8cb55540e68a4f009a6 (patch)
tree47c4f41c68d6b2b5b12531c432ad1b1e33616f4e /sfx2/source/appl/appreg.cxx
parent1ff8e0a958685fbaf63fbc2d4c766a76869d4879 (diff)
flatten SfxStbCtrlFactArr_Impl
Change-Id: I1d92a41f0f1a2610930e48b5eeaa689ac47ab7fe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121329 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/appl/appreg.cxx')
-rw-r--r--sfx2/source/appl/appreg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/appreg.cxx b/sfx2/source/appl/appreg.cxx
index 6c9810cbf02c..d8dd87886cb9 100644
--- a/sfx2/source/appl/appreg.cxx
+++ b/sfx2/source/appl/appreg.cxx
@@ -90,9 +90,9 @@ void SfxApplication::RegisterStatusBarControl_Impl( SfxModule *pMod, const SfxSt
}
#ifdef DBG_UTIL
- for ( size_t n=0; n<pImpl->pStbCtrlFac->size(); n++ )
+ for ( size_t n=0; n<pImpl->maStbCtrlFactories.size(); n++ )
{
- SfxStbCtrlFactory *pF = &(*pImpl->pStbCtrlFac)[n];
+ SfxStbCtrlFactory *pF = &pImpl->maStbCtrlFactories[n];
if ( pF->nTypeId == rFact.nTypeId &&
(pF->nSlotId == rFact.nSlotId || pF->nSlotId == 0) )
{
@@ -101,7 +101,7 @@ void SfxApplication::RegisterStatusBarControl_Impl( SfxModule *pMod, const SfxSt
}
#endif
- pImpl->pStbCtrlFac->push_back( rFact );
+ pImpl->maStbCtrlFactories.push_back( rFact );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */