diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-03 13:23:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-03 13:24:07 +0100 |
commit | 717f214e66fd901826eb242d8389c4ba91fbd276 (patch) | |
tree | 5f2850e2656153601f4d3c5ef75f647d5ebf4bd7 /basctl | |
parent | df3cc933d35a1489119a57bb1a94f50befce01e0 (diff) |
CID#738559 uninitialized member
Change-Id: I68d9c84dbaa1a9a8d60d572027fcbc1d8c481e8e
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index c154afb04556..8699ea308019 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -1356,11 +1356,12 @@ void EditorWindow::ForceSyntaxTimeout() // ================ // -BreakPointWindow::BreakPointWindow (Window* pParent, ModulWindow* pModulWindow) : - Window(pParent, WB_BORDER), - rModulWindow(*pModulWindow), - nCurYOffset(0), // memorize nCurYOffset and not take it from EditEngine - nMarkerPos(NoMarker) +BreakPointWindow::BreakPointWindow (Window* pParent, ModulWindow* pModulWindow) + : Window(pParent, WB_BORDER) + , rModulWindow(*pModulWindow) + , nCurYOffset(0) // memorize nCurYOffset and not take it from EditEngine + , nMarkerPos(NoMarker) + , bErrorMarker(false) { setBackgroundColor(GetSettings().GetStyleSettings().GetFieldColor()); SetHelpId(HID_BASICIDE_BREAKPOINTWINDOW); |