Fixed search bug

Fixed print bug
Bumped version number to 1.4.2
This commit is contained in:
Christian Hammacher
2006-04-23 20:46:52 +00:00
parent fce58de726
commit 58ed3067ed
7 changed files with 15 additions and 9 deletions

View File

@ -2967,7 +2967,8 @@ end;
procedure TfrmMain.FormCreate(Sender: TObject);
begin
stlIDEs.ItemIndex := 0;
cboCurrentIDE.Text := stlIDEs.Strings[0];
sciEditor.StreamClass := TSciMyStream;
sciEditor.OnCallTipClick := sciEditorCallTipClick; // god why doesn't delphi save this
eACList := TmxJsCollection.Create(TACFunction);
@ -2979,6 +2980,7 @@ procedure TfrmMain.stlIDEsClick(Sender: TObject);
begin
if (stlIDEs.Strings[stlIDEs.ItemIndex] = 'C++') and (not eCPP) then begin
stlIDEs.ItemIndex := CurrProjects;
cboCurrentIDE.Text := stlIDEs.Strings[CurrProjects];
MessageBox(Handle, 'C++ IDE is currenty not implemented!', 'Error', MB_ICONERROR);
exit;
end;