summaryrefslogtreecommitdiffstats
path: root/i18npool/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-11 12:32:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-11 14:33:33 +0000
commitd3ef7f5e3fc2b650020c290386749422bfc07666 (patch)
treeb4f654921943363bd201e058967780d69c9e54f1 /i18npool/inc
parentcoverity#707926 Uninitialized scalar field (diff)
downloadcore-d3ef7f5e3fc2b650020c290386749422bfc07666.tar.gz
core-d3ef7f5e3fc2b650020c290386749422bfc07666.zip
coverity#707927 Uninitialized pointer field
Change-Id: I5011c4dfea02c8fab8ca3ee08bbed7f31396e3ec
Diffstat (limited to 'i18npool/inc')
-rw-r--r--i18npool/inc/textconversion.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/i18npool/inc/textconversion.hxx b/i18npool/inc/textconversion.hxx
index 42f91bf62cbd..7be157b31899 100644
--- a/i18npool/inc/textconversion.hxx
+++ b/i18npool/inc/textconversion.hxx
@@ -40,7 +40,7 @@ class TextConversion: public cppu::WeakImplHelper2
>
{
public:
- TextConversion();
+ TextConversion(const char* pImplName);
~TextConversion();
// Methods
virtual com::sun::star::i18n::TextConversionResult SAL_CALL
@@ -81,8 +81,9 @@ public:
com::sun::star::uno::Sequence< OUString > SAL_CALL
getSupportedServiceNames()
throw( com::sun::star::uno::RuntimeException );
-protected :
+private:
const sal_Char* implementationName;
+protected :
#ifndef DISABLE_DYNLOADING
oslModule hModule;
oslGenericFunction SAL_CALL getFunctionBySymbol(const sal_Char* func);