diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 12:32:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 14:33:33 +0000 |
commit | d3ef7f5e3fc2b650020c290386749422bfc07666 (patch) | |
tree | b4f654921943363bd201e058967780d69c9e54f1 /i18npool/source/textconversion/textconversion_ko.cxx | |
parent | 83e979f61b02373fc0d624a96347acfad3c64e24 (diff) |
coverity#707927 Uninitialized pointer field
Change-Id: I5011c4dfea02c8fab8ca3ee08bbed7f31396e3ec
Diffstat (limited to 'i18npool/source/textconversion/textconversion_ko.cxx')
-rw-r--r-- | i18npool/source/textconversion/textconversion_ko.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/i18npool/source/textconversion/textconversion_ko.cxx b/i18npool/source/textconversion/textconversion_ko.cxx index 617ff29f0dad..2fcc9f7ed091 100644 --- a/i18npool/source/textconversion/textconversion_ko.cxx +++ b/i18npool/source/textconversion/textconversion_ko.cxx @@ -40,6 +40,7 @@ namespace com { namespace sun { namespace star { namespace i18n { #define SCRIPT_HANGUL 2 TextConversion_ko::TextConversion_ko( const Reference < XComponentContext >& xContext ) + : TextConversion("com.sun.star.i18n.TextConversion_ko") { Reference < XInterface > xI; @@ -76,8 +77,6 @@ TextConversion_ko::TextConversion_ko( const Reference < XComponentContext >& xCo maxLeftLength = xCD->getMaxCharCount(ConversionDirection_FROM_LEFT); maxRightLength = xCD->getMaxCharCount(ConversionDirection_FROM_RIGHT); } - - implementationName = "com.sun.star.i18n.TextConversion_ko"; } sal_Int16 SAL_CALL checkScriptType(sal_Unicode c) |