| author | Caolán McNamara <caolanm@redhat.com> | 2012-08-17 16:17:42 (GMT) |
|---|---|---|
| committer | Caolán McNamara <caolanm@redhat.com> | 2012-08-17 16:17:42 (GMT) |
| commit | 0e843513a237024ab330e1d358f8ff4a952203a8 (patch) (side-by-side diff) | |
| tree | 927474b3650ad4c5b4e00f35a7f3537d5f753ecc | |
| parent | 288aebef57310e094d990434de3f35c8472b7b1a (diff) | |
| download | core-0e843513a237024ab330e1d358f8ff4a952203a8.zip core-0e843513a237024ab330e1d358f8ff4a952203a8.tar.gz | |
silence macosx uninitialized warning
Change-Id: I8472cf79aaf193ce63a1d2bfa9d329ad35ddd2c6
| -rw-r--r-- | basctl/source/basicide/layout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/layout.cxx b/basctl/source/basicide/layout.cxx index 684a26b..fdc2345 100644 --- a/basctl/source/basicide/layout.cxx +++ b/basctl/source/basicide/layout.cxx @@ -240,7 +240,7 @@ void Layout::SplittedSide::ArrangeIn (Rectangle const& rRect) } // positioning separator lines and windows - bool bPrevDocked; // is the previous window docked? + bool bPrevDocked = false; // is the previous window docked? int nStartPos = nPos2; // window position in the strip for (unsigned i = 0; i != vWindows.size(); ++i) { |
