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:
paul 2009-12-06 06:17:30 +00:00
parent 6afed917e6
commit dc5c58c871

View File

@ -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;