summaryrefslogtreecommitdiff
path: root/unotools/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-11-05 16:42:31 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-11-05 16:43:15 +0100
commit7c884716a7bac9ebb18c748cefb89426563a195e (patch)
treebe3fa65d019c9b99666bf31dd726df45c8c2766d /unotools/source
parentd2c45d0460cf99aadde1aaec11e032f488fa277b (diff)
fdo#46808: Slight simplifications of previous commit
Change-Id: I9e0158faa24d388176427529500f073b8b6f34bd
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/i18n/transliterationwrapper.cxx4
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);
}