2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-01-17 01:08:04 +03:00
amxmodx/editor/studio/UnitfrmAutoIndent.pas

25 lines
440 B
ObjectPascal
Raw Normal View History

2005-08-26 18:29:39 +00:00
unit UnitfrmAutoIndent;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, TFlatCheckBoxUnit, TFlatButtonUnit;
type
TfrmAutoIndent = class(TForm)
chkUnindentPressingClosingBrace: TFlatCheckBox;
chkUnindentLine: TFlatCheckBox;
chkIndentOpeningBrace: TFlatCheckBox;
cmdClose: TFlatButton;
end;
var
frmAutoIndent: TfrmAutoIndent;
implementation
{$R *.DFM}
end.