diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-13 14:22:05 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-13 20:35:42 +0000 |
commit | 9240b9b7849de70fef6b944fe6ce3d1dbc02eb78 (patch) | |
tree | 0442ec516ca3df89174526db72ed6522a8a4439d /svtools/source/control | |
parent | 0084e5e9bb7c64a34ac73698cf35de61bd0c9c7d (diff) |
cppcheck: init member variable
Diffstat (limited to 'svtools/source/control')
-rw-r--r-- | svtools/source/control/tabbar.cxx | 5 |
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 ) ); |