mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 18:19:08 +02:00
IDE: redirect codetools dbgout to LCLProc
git-svn-id: trunk@21122 -
This commit is contained in:
parent
2f1d65c377
commit
326e3c1a66
@ -2666,5 +2666,15 @@ begin
|
|||||||
Result := CheckGroup.Checked[CheckGroup.Items.IndexOf(Caption)];
|
Result := CheckGroup.Checked[CheckGroup.Items.IndexOf(Caption)];
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure CTDbgOut(const s: string);
|
||||||
|
begin
|
||||||
|
LCLProc.DbgOut(s);
|
||||||
|
end;
|
||||||
|
|
||||||
|
initialization
|
||||||
|
CTDbgOutEvent:=@CTDbgOut;
|
||||||
|
finalization
|
||||||
|
CTDbgOutEvent:=nil;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user