diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-08-05 17:45:17 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-08-05 17:47:06 +0200 |
commit | a4e937d5b04b10c2d6ebecce6e77c57a02a95d17 (patch) | |
tree | 9199d10cec9499142fe4eb5937934dfdf0b59c34 /vcl | |
parent | 76ccb5fe45aef020f51a6c0d5ed14c95390a471f (diff) |
Declare all the members in ImplCommonButtonData ctor
Change-Id: Ie3bb75617eef66ea5af77c8013d42a49dd69d2d0
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/button.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx index 37752bbcc50e..13e3abd80d4c 100644 --- a/vcl/source/control/button.cxx +++ b/vcl/source/control/button.cxx @@ -86,13 +86,9 @@ public: }; // ----------------------------------------------------------------------- -ImplCommonButtonData::ImplCommonButtonData() +ImplCommonButtonData::ImplCommonButtonData() : maFocusRect(), mnSeparatorX(0), mnButtonState(0), +mbSmallSymbol(sal_False), maImage(), meImageAlign(IMAGEALIGN_TOP), meSymbolAlign(SYMBOLALIGN_LEFT) { - mnButtonState = 0; - mbSmallSymbol = sal_False; - - meImageAlign = IMAGEALIGN_TOP; - meSymbolAlign = SYMBOLALIGN_LEFT; } // ----------------------------------------------------------------------- |