mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-20 10:59:23 +01:00
FpDebug: remove double line break from formatted watches.
git-svn-id: trunk@65488 -
This commit is contained in:
parent
d7b4f956ca
commit
e61ab5d73d
@ -1117,7 +1117,7 @@ function TFpPascalPrettyPrinter.InternalPrintValue(out APrintedValue: String;
|
||||
end;
|
||||
|
||||
s2 := LineEnding;
|
||||
if AFlags <> [] then s2 := ' ';;
|
||||
if AOptions * [ppoStackParam] <> [] then s2 := ' ';
|
||||
fl := [ppvSkipClassBody];
|
||||
//if ppvSkipClassBody in AFlags then
|
||||
// fl := [ppvSkipClassBody, ppvSkipRecordBody];
|
||||
@ -1154,7 +1154,7 @@ function TFpPascalPrettyPrinter.InternalPrintValue(out APrintedValue: String;
|
||||
if not Result then begin
|
||||
if APrintedValue = ''
|
||||
then APrintedValue := s
|
||||
else APrintedValue := APrintedValue + ';' + LineEnding + s2 + s;
|
||||
else APrintedValue := APrintedValue + ';' + s2 + s;
|
||||
end;
|
||||
if (ppvCreateDbgType in AFlags) then begin
|
||||
s := '';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user