Skip to content

Commit c02ddb0

Browse files
committed
Such big changes, require such big version changes. Simba 2000.
1 parent 6b6c33d commit c02ddb0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Source/forms/simba.main.lfm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object SimbaForm: TSimbaForm
1313
OnKeyDown = FormKeyDown
1414
OnWindowStateChange = FormWindowStateChange
1515
Position = poScreenCenter
16-
LCLVersion = '3.0.0.1'
16+
LCLVersion = '3.0.0.2'
1717
object DockPanel: TAnchorDockPanel
1818
Left = 0
1919
Height = 511
@@ -500,9 +500,9 @@ object SimbaForm: TSimbaForm
500500
object Separator1: TMenuItem
501501
Caption = '-'
502502
end
503-
object MenuItemDownloadAnotherSimba: TMenuItem
504-
Caption = 'Download Another Simba'
505-
OnClick = MenuItemDownloadAnotherSimbaClick
503+
object MenuItemDownloadSimba: TMenuItem
504+
Caption = 'Download Simba ...'
505+
OnClick = MenuItemDownloadSimbaClick
506506
end
507507
end
508508
object MainMenuView: TPopupMenu

Source/forms/simba.main.pas

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ interface
6767
TSimbaForm = class(TForm)
6868
DockPanel: TAnchorDockPanel;
6969
Images: TImageList;
70-
MenuItemDownloadAnotherSimba: TMenuItem;
70+
MenuItemDownloadSimba: TMenuItem;
7171
MenuItemSelectLine: TMenuItem;
7272
MenuItemSelectWord: TMenuItem;
7373
MenuItemFind: TMenuItem;
@@ -196,7 +196,7 @@ TSimbaForm = class(TForm)
196196
procedure MenuFileClick(Sender: TObject);
197197
procedure MenuFindClick(Sender: TObject);
198198
procedure MenuGotoClick(Sender: TObject);
199-
procedure MenuItemDownloadAnotherSimbaClick(Sender: TObject);
199+
procedure MenuItemDownloadSimbaClick(Sender: TObject);
200200
procedure MenuItemFindInFilesClick(Sender: TObject);
201201
procedure MenuItemSelectLineClick(Sender: TObject);
202202
procedure MenuItemSelectWordClick(Sender: TObject);
@@ -913,7 +913,7 @@ procedure TSimbaForm.MenuGotoClick(Sender: TObject);
913913
end;
914914
end;
915915

916-
procedure TSimbaForm.MenuItemDownloadAnotherSimbaClick(Sender: TObject);
916+
procedure TSimbaForm.MenuItemDownloadSimbaClick(Sender: TObject);
917917
begin
918918
SimbaDownloadSimbaForm.ShowModal();
919919
end;

0 commit comments

Comments
 (0)