Kaydet (Commit) 620ddc9e authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#707729 : Uninitialized scalar field

Change-Id: I4411b8d36a184391e2be2be9be82016958607fda
üst c2b50457
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment