diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-01 14:28:35 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-01 15:29:58 -0600 |
commit | 620ddc9eaf2d6cffc02c85e2b92218885c019217 (patch) | |
tree | 150ff9ffb79ecba541e7862c82495d681ca0a466 /dbaccess | |
parent | c2b50457efd1acf005a10157c6f79186c30eb07d (diff) |
coverity#707729 : Uninitialized scalar field
Change-Id: I4411b8d36a184391e2be2be9be82016958607fda
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ext/macromigration/rangeprogressbar.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ext/macromigration/rangeprogressbar.hxx b/dbaccess/source/ext/macromigration/rangeprogressbar.hxx index 90ef55cc4c3a..f7d231d33287 100644 --- a/dbaccess/source/ext/macromigration/rangeprogressbar.hxx +++ b/dbaccess/source/ext/macromigration/rangeprogressbar.hxx @@ -32,14 +32,14 @@ namespace dbmm { public: RangeProgressBar( Window* _pParent, WinBits nWinBits = WB_STDPROGRESSBAR ) - :ProgressBar( _pParent, nWinBits ) - { - } + : ProgressBar( _pParent, nWinBits ) + , m_nRange(0) + { } RangeProgressBar( Window* _pParent, const ResId& rResId ) - :ProgressBar( _pParent, rResId ) - { - } + : ProgressBar( _pParent, rResId ) + , m_nRange(0) + { } inline void SetRange( sal_uInt32 _nRange ); inline sal_uInt32 GetRange() const; |