summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-13 14:22:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-13 20:35:42 +0000
commit9240b9b7849de70fef6b944fe6ce3d1dbc02eb78 (patch)
tree0442ec516ca3df89174526db72ed6522a8a4439d /svtools
parent0084e5e9bb7c64a34ac73698cf35de61bd0c9c7d (diff)
cppcheck: init member variable
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/tabbar.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index 0dae1ae3eb20..fd4e0779fc2e 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -163,8 +163,9 @@ private:
// -----------------------------------------------------------------------
-ImplTabSizer::ImplTabSizer( TabBar* pParent, WinBits nWinStyle ) :
- Window( pParent, nWinStyle & WB_3DLOOK )
+ImplTabSizer::ImplTabSizer( TabBar* pParent, WinBits nWinStyle )
+ : Window( pParent, nWinStyle & WB_3DLOOK )
+ , mnStartWidth(0)
{
SetPointer( Pointer( POINTER_HSIZEBAR ) );
SetSizePixel( Size( 7, 0 ) );