Changed a few captions in the about dialog

This commit is contained in:
Christian Hammacher 2005-12-11 16:45:02 +00:00
parent 0b834a3f9b
commit b6d6be3c27
7 changed files with 5 additions and 3 deletions

View File

@ -115,7 +115,7 @@ AutoIncBuild=1
MajorVer=1
MinorVer=4
Release=0
Build=1
Build=4
Debug=0
PreRelease=0
Special=0
@ -126,7 +126,7 @@ CodePage=1252
[Version Info Keys]
CompanyName=AMX Mod X Dev Team
FileDescription=
FileVersion=1.4.0.1
FileVersion=1.4.0.4
InternalName=gaben
LegalCopyright=AMX Mod X Dev Team
LegalTrademarks=

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -14,7 +14,7 @@ type
lblInfo1: TLabel;
imgAMXXLarge: TImage;
cmdClose: TSpTBXButton;
lblCHelp: TLabel;
lblDonations: TLabel;
lblScintilla1: TLabel;
lblScintilla2: TLabel;
pnlImages: TPanel;

View File

@ -756,6 +756,7 @@ object frmMain: TfrmMain
Align = alClient
OnModified = sciEditorModified
OnDblClick = sciEditorDblClick
OnCallTipClick = sciEditorCallTipClick
OnKeyUp = sciEditorKeyUp
OnKeyDown = sciEditorKeyDown
OnKeyPress = sciEditorKeyPress

View File

@ -2947,6 +2947,7 @@ end;
procedure TfrmMain.FormCreate(Sender: TObject);
begin
sciEditor.StreamClass := TSciMyStream;
sciEditor.OnCallTipClick := sciEditorCallTipClick; // god why doesn't delphi save this
eACList := TmxJsCollection.Create(TACFunction);
eACList.Collectionname := 'Autocomplete_List';
eACList.LoadFromFile(ExtractFilePath(ParamStr(0)) + 'config\ACList.cfg');