mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-08 11:12:48 +02:00
26 lines
283 B
ObjectPascal
26 lines
283 B
ObjectPascal
unit CodeToolsDefPreview;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs;
|
|
|
|
type
|
|
TForm2 = class(TForm)
|
|
private
|
|
public
|
|
end;
|
|
|
|
var
|
|
Form2: TForm2;
|
|
|
|
implementation
|
|
|
|
initialization
|
|
{$I codetoolsdefpreview.lrs}
|
|
|
|
end.
|
|
|