mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 16:23:42 +02:00
32 lines
355 B
ObjectPascal
32 lines
355 B
ObjectPascal
unit lr_propedit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Forms, LR_Class;
|
|
|
|
type
|
|
|
|
{ TPropEditor }
|
|
|
|
TPropEditor = class(TForm)
|
|
public
|
|
View: TfrView;
|
|
|
|
function ShowEditor: TModalResult; virtual;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TPropEditor }
|
|
|
|
function TPropEditor.ShowEditor: TModalResult;
|
|
begin
|
|
Result := ShowModal;
|
|
end;
|
|
|
|
end.
|
|
|