diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2009-11-26 11:15:10 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2009-11-26 11:15:10 +0100 |
commit | 05e8ff4c39b2a603b86e7fa587cbaa096332182d (patch) | |
tree | d52c003152fb4b2a23b53083c1ba2ea0056a2e46 /vcl/source/window | |
parent | cf01449586fb6895c1f2b836464e73e98bfd4334 (diff) |
vcl108: #i107228# fix an uninitalized warning from valgrind (thanks cmc)
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/status.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index 4aaef6a707b1..a4c067061c30 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -156,6 +156,7 @@ void StatusBar::ImplInit( Window* pParent, WinBits nStyle ) mbProgressMode = FALSE; mbInUserDraw = FALSE; mbBottomBorder = FALSE; + mnItemsWidth = STATUSBAR_OFFSET_X; mnDX = 0; mnDY = 0; mnCalcHeight = 0; |