diff options
author | Eike Rathke <erack@redhat.com> | 2014-04-17 23:02:15 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-17 23:15:03 +0200 |
commit | 6ee460988873ee085ed4ad3e62a3fe6d37608685 (patch) | |
tree | fbb489698cf8fae332b8a87bb8285907dafb7355 | |
parent | a623feea9bb250c136866190e33f2fb6dbb6ddf4 (diff) |
no temporary instance of SvtLanguageTable necessary here
geez..
Change-Id: Ide611cc94e939405345deb8b341fd185d68765e5
-rw-r--r-- | cui/source/dialogs/thesdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx index b72d3a2e59da..936922e76d57 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -537,7 +537,7 @@ void SvxThesaurusDialog::SetWindowTitle( LanguageType nLanguage ) if( nIndex != -1 ) aStr = aStr.copy( 0, nIndex - 1 ); aStr += " ("; - aStr += SvtLanguageTable().GetLanguageString( nLanguage ); + aStr += SvtLanguageTable::GetLanguageString( nLanguage ); aStr += ")"; SetText( aStr ); // set window title } |