Debugger: Fix uninitialized variable.

MemoryView:
- fTrackingMouse wasn't being initialized in the constructor, which would
  lead to the memory view sometimes thinking it was in mouse tracking mode
  immediately when opened.
This commit is contained in:
Rene Gollent 2015-05-26 23:38:09 -04:00
parent 0e8de1300a
commit 8a74210d80

View File

@ -58,6 +58,7 @@ MemoryView::MemoryView(::Team* team, Listener* listener)
fSelectionStart(0),
fSelectionEnd(0),
fScrollRunner(NULL),
fTrackingMouse(false),
fListener(listener)
{
Architecture* architecture = team->GetArchitecture();