diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-28 20:44:53 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-28 23:00:31 -0600 |
commit | 6580708fcdc59271b7dd56334ac2bc9d7565b4cc (patch) | |
tree | a2bdbb6d78072534c59e02a27f065fa6ccfe05c8 /include/svx/nbdtmg.hxx | |
parent | c0eba4b725abf8393bac34e39be807cb4479850f (diff) |
coverity#1028571 : Uninitialized scalar field
Change-Id: I810dad2b8e641c88605de998fc1e569208dde917
Diffstat (limited to 'include/svx/nbdtmg.hxx')
-rw-r--r-- | include/svx/nbdtmg.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx index bad5c14e9d7d..028b4571f135 100644 --- a/include/svx/nbdtmg.hxx +++ b/include/svx/nbdtmg.hxx @@ -97,12 +97,12 @@ class SVX_DLLPUBLIC BulletsSettings_Impl:public BulletsSettings { public: sal_Unicode cBulletChar; - //rtl::OUString sBulletFont; Font aFont; public: - BulletsSettings_Impl(NBType eTy) : - BulletsSettings(eTy) + BulletsSettings_Impl(NBType eTy) + : BulletsSettings(eTy) + , cBulletChar(0) {} virtual ~BulletsSettings_Impl(){} }; |