diff options
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/transliterationwrapper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/i18n/transliterationwrapper.cxx b/unotools/source/i18n/transliterationwrapper.cxx index 517f51008ea1..517ed48f3449 100644 --- a/unotools/source/i18n/transliterationwrapper.cxx +++ b/unotools/source/i18n/transliterationwrapper.cxx @@ -34,9 +34,9 @@ using namespace ::utl; TransliterationWrapper::TransliterationWrapper( const Reference< XComponentContext > & rxContext, sal_uInt32 nTyp ) - : nType( nTyp ), nLanguage( 0 ), bFirstCall( sal_True ) + : xTrans( Transliteration::create(rxContext) ), nType( nTyp ), + nLanguage( 0 ), bFirstCall( sal_True ) { - xTrans = Transliteration::create(rxContext); } |