mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 00:02:03 +02:00
Debugger: fix compile after r60049 #52e85d555e "keep register-names in register window, while debugger is running" Issue #0034844
git-svn-id: trunk@60052 -
This commit is contained in:
parent
b7540d316c
commit
4014c0f4fd
@ -397,7 +397,7 @@ begin
|
||||
|
||||
Reg := GetCurrentRegisters;
|
||||
if (Reg = nil) or (reg.DataValidity<> ddsValid) then begin
|
||||
if (DebugBoss.Debugger = nil) or not (DebugBoss.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