mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 22:35:37 +03:00
73ba5d1644
Updated the Autocomplete-Check function Prepared AMXX-Studio for release
26 lines
467 B
ObjectPascal
Executable File
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.
|