mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 15:59:13 +02:00
* Remove writeln statements
git-svn-id: trunk@57527 -
This commit is contained in:
parent
d396966a7b
commit
75314f3319
@ -162,19 +162,13 @@ begin
|
||||
if (FVariablesLastDown.Y<>0) then
|
||||
begin
|
||||
N:=TVData.GetNodeAt(FVariablesLastDown.X,FVariablesLastDown.Y);
|
||||
if Assigned(N) then
|
||||
Writeln('Checking ',N.Text)
|
||||
else
|
||||
Writeln('Not on node');
|
||||
if (N<>Nil) and (TVVariables.Selected<>N) then
|
||||
begin
|
||||
Writeln('Correcting ',N.Text);
|
||||
TVVariables.Selected:=N;
|
||||
end;
|
||||
end;
|
||||
if (TVVariables.Selected<>Nil) then
|
||||
begin
|
||||
Writeln('Actual ',TVVariables.Selected.Text);
|
||||
O:=TObject(TVVariables.Selected.Data);
|
||||
if Assigned(o) then
|
||||
if (O.InheritsFrom(TFPReportVariable)) then
|
||||
|
Loading…
Reference in New Issue
Block a user