diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-24 10:45:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-24 12:12:32 +0000 |
commit | 530ffd6e6e93b3f6c39288975f01dd8c5447b85d (patch) | |
tree | 70d68e13cbb1f6c65a00541d0bc03255d9cb604e /svx | |
parent | b15b4cbb35021d64794d199907b71bc77fbd4045 (diff) |
coverity#708347 Uninitialized scalar field
Change-Id: I1b47cb17c816334d6c9a3793669aa78a565629f1
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/fontlb.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/dialog/fontlb.cxx b/svx/source/dialog/fontlb.cxx index 9c4c74c60c49..fbd455c45afd 100644 --- a/svx/source/dialog/fontlb.cxx +++ b/svx/source/dialog/fontlb.cxx @@ -27,8 +27,9 @@ -SvLBoxFontString::SvLBoxFontString() : - SvLBoxString() +SvLBoxFontString::SvLBoxFontString() + : SvLBoxString() + , mbUseColor(false) { } |