mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 10:59:29 +02:00
Debugger: fix compile after r60049 #52e85d555e keep register-names in register window, while debugger is running. Issue #34844
git-svn-id: branches/fixes_2_0@60173 -
This commit is contained in:
parent
61ef566417
commit
f001cc32ec
@ -365,7 +365,7 @@ begin
|
||||
|
||||
Reg := GetCurrentRegisters;
|
||||
if (Reg = nil) or (reg.DataValidity<> ddsValid) then begin
|
||||
if (DebugBoss.Debugger = nil) or not (DebugBoss.Debugger.State in [dsPause, dsInternalPause, dsRun]) then
|
||||
if (DebugBoss = nil) or not (DebugBoss.State in [dsPause, dsInternalPause, dsRun]) then
|
||||
lvRegisters.Items.Clear;
|
||||
|
||||
if (reg <> nil) then
|
||||
|
Loading…
Reference in New Issue
Block a user