mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 23:49:28 +02:00
debugger: don't show 'record ShortString' for shortstrings since this is debug info implementation details
git-svn-id: trunk@22990 -
This commit is contained in:
parent
6afed917e6
commit
dc5c58c871
@ -2369,6 +2369,9 @@ begin
|
||||
if (ResultInfo.TypeName = 'Variant') or
|
||||
(ResultInfo.TypeName = 'VARIANT') then
|
||||
AResult := GetVariantValue(AResult)
|
||||
else
|
||||
if (ResultInfo.TypeName = 'ShortString') then
|
||||
AResult := AResult // don't show 'record ShortString' as this is debug info implementation details
|
||||
else
|
||||
AResult := 'record ' + ResultInfo.TypeName + ' '+ AResult;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user