mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-03 14:39:36 +01:00
lazutils: fixed dbgs(TComponentState)
git-svn-id: trunk@44278 -
This commit is contained in:
parent
6c43d476c4
commit
dabd5d7e4c
@ -438,7 +438,7 @@ begin
|
||||
Result:='';
|
||||
for i := low(TComponentState) to high(TComponentState) do
|
||||
if i in s then
|
||||
Result := Result + DbgSJoin(Result, dbgsComponentStateEnum(i));
|
||||
Result := DbgSJoin(Result, dbgsComponentStateEnum(i));
|
||||
Result:='['+Result+']';
|
||||
{$ELSE}
|
||||
Result := '';
|
||||
@ -510,7 +510,7 @@ begin
|
||||
Result:='';
|
||||
for i := low(TShiftStateEnum) to high(TShiftStateEnum) do
|
||||
if i in Shift then
|
||||
Result := Result + DbgSJoin(Result, DbgS(i));
|
||||
Result := DbgSJoin(Result, DbgS(i));
|
||||
Result:='['+Result+']';
|
||||
{$ELSE}
|
||||
Result := '';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user