amxmodx/editor/studio/UnitfrmAutoIndent.pas
Christian Hammacher 73ba5d1644 Updated some captions
Updated the Autocomplete-Check function
Prepared AMXX-Studio for release
2006-01-11 18:02:42 +00:00

26 lines
467 B
ObjectPascal
Executable File

unit UnitfrmAutoIndent;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, TFlatCheckBoxUnit, TFlatButtonUnit;
type
TfrmAutoIndent = class(TForm)
cmdClose: TFlatButton;
pnlCheckboxes: TPanel;
chkUnindentPressingClosingBrace: TFlatCheckBox;
chkUnindentLine: TFlatCheckBox;
chkIndentOpeningBrace: TFlatCheckBox;
end;
var
frmAutoIndent: TfrmAutoIndent;
implementation
{$R *.DFM}
end.