summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-27 12:56:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-27 14:38:37 +0000
commita8d7c510b41d31321f3a88db6faa34a10803a6f1 (patch)
tree84681b6571fa7416f3cee9b21fadc225d1d379c6 /basic
parentfdc28850c6c30be6e6ef956f9ca8760bcc6bffc4 (diff)
coverity#707629 Uninitialized scalar field
Change-Id: I0e3d9d4dad46e9b88be11cc9ac2c7d3c0c4b6f6e
Diffstat (limited to 'basic')
-rw-r--r--basic/inc/sbxbase.hxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/basic/inc/sbxbase.hxx b/basic/inc/sbxbase.hxx
index 597f2927eab1..de1152c921ff 100644
--- a/basic/inc/sbxbase.hxx
+++ b/basic/inc/sbxbase.hxx
@@ -41,7 +41,13 @@ struct SbxAppData
LanguageType eBasicFormaterLangType;
// It might be useful to store this class 'global' because some string reosurces are saved here
- SbxAppData() : eSbxError( SbxERR_OK ), aFacs(), pBasicFormater( NULL ) {}
+ SbxAppData()
+ : eSbxError(SbxERR_OK)
+ , aFacs()
+ , pBasicFormater(NULL)
+ , eBasicFormaterLangType(LANGUAGE_DONTKNOW)
+ {
+ }
~SbxAppData();
};