summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2016-06-17 13:56:07 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2016-08-18 02:39:08 +0200
commit7d5bda0a2fdf8670b34e1e3f5043ddbe5399237b (patch)
treee2ece4261181547c9853c5d0679052ab5882d9df /sfx2
parented43afc3a7d7f8ceadb01827b2c67f793cddd7bb (diff)
screenshots: add missing cppunit files
Change-Id: I9fd716671c7d1dc568d14b914c9a802fc6239a5e
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/tabdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx
index cb6842f99efb..4a5f9533e385 100644
--- a/sfx2/source/dialog/tabdlg.cxx
+++ b/sfx2/source/dialog/tabdlg.cxx
@@ -1336,7 +1336,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const
{
std::vector<OString> aRetval;
- for (SfxTabDlgData_Impl::const_iterator it = pImpl->aData.begin(); it != pImpl->aData.end(); ++it)
+ for (SfxTabDlgData_Impl::const_iterator it = m_pImpl->aData.begin(); it != m_pImpl->aData.end(); ++it)
{
SfxTabPage* pCandidate = GetTabPage((*it)->nId);
@@ -1359,7 +1359,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const
bool SfxTabDialog::selectPageByUIXMLDescription(const OString& rUIXMLDescription)
{
- for (SfxTabDlgData_Impl::const_iterator it = pImpl->aData.begin(); it != pImpl->aData.end(); ++it)
+ for (SfxTabDlgData_Impl::const_iterator it = m_pImpl->aData.begin(); it != m_pImpl->aData.end(); ++it)
{
SfxTabPage* pCandidate = (*it)->pTabPage;