diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-01 16:05:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-01 16:05:56 +0200 |
commit | 4961274c5b13017bc4e6904c8bdeb9c2a49566de (patch) | |
tree | 83d9df03562f6fb499aaffb2f72c0b6cd419ef4d /svtools | |
parent | 6752590fec030067bde038ee6c28cff05f972eac (diff) |
fix mis-merge
Change-Id: I529b7abff98e38e503ffbcb39946e30d12a053cc
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/config/miscopt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/config/miscopt.cxx b/svtools/source/config/miscopt.cxx index 67939398b89c..10a6fe9e8f51 100644 --- a/svtools/source/config/miscopt.cxx +++ b/svtools/source/config/miscopt.cxx @@ -746,12 +746,12 @@ void SvtMiscOptions::SetSymbolsSize( sal_Int16 nSet ) sal_Int16 SvtMiscOptions::GetSidebarIconSize() const { - return m_pDataContainer->GetSidebarIconSize(); + return m_pImpl->GetSidebarIconSize(); } void SvtMiscOptions::SetSidebarIconSize( sal_Int16 nSet ) { - m_pDataContainer->SetSidebarIconSize( nSet ); + m_pImpl->SetSidebarIconSize( nSet ); } sal_Int16 SvtMiscOptions::GetCurrentSymbolsSize() const |