summaryrefslogtreecommitdiff
path: root/sfx2/source/menu/mnumgr.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:51:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:32 +0200
commit7c2f000085cdd4ea58a69447a049523f2ad619f8 (patch)
treef0ab116c7b03100932f69732dcdaee6606d3f092 /sfx2/source/menu/mnumgr.cxx
parent1d241f445a381c190c4b8c195964b96ce6bc4704 (diff)
loplugin:staticcall
Change-Id: Ie5e9e21f4c592c58094afc954f1de54512719fd5
Diffstat (limited to 'sfx2/source/menu/mnumgr.cxx')
-rw-r--r--sfx2/source/menu/mnumgr.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/menu/mnumgr.cxx b/sfx2/source/menu/mnumgr.cxx
index 51536b7e66c1..b2cbdceb4648 100644
--- a/sfx2/source/menu/mnumgr.cxx
+++ b/sfx2/source/menu/mnumgr.cxx
@@ -150,9 +150,9 @@ PopupMenu* InsertThesaurusSubmenu_Impl( SfxBindings* pBindings, Menu* pSVMenu )
// get synonym list for sub menu
std::vector< OUString > aSynonyms;
SfxThesSubMenuHelper aHelper;
- OUString aText( aHelper.GetText( aThesLookUpStr, nDelimPos ) );
+ OUString aText( SfxThesSubMenuHelper::GetText( aThesLookUpStr, nDelimPos ) );
lang::Locale aLocale;
- aHelper.GetLocale( aLocale, aThesLookUpStr, nDelimPos );
+ SfxThesSubMenuHelper::GetLocale( aLocale, aThesLookUpStr, nDelimPos );
const bool bHasMoreSynonyms = aHelper.GetMeanings( aSynonyms, aText, aLocale, 7 /*max number of synonyms to retrieve*/ );
(void) bHasMoreSynonyms;