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/inc/textconversion.hxx | |
parent | 83e979f61b02373fc0d624a96347acfad3c64e24 (diff) |
coverity#707927 Uninitialized pointer field
Change-Id: I5011c4dfea02c8fab8ca3ee08bbed7f31396e3ec
Diffstat (limited to 'i18npool/inc/textconversion.hxx')
-rw-r--r-- | i18npool/inc/textconversion.hxx | 5 |
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); |