Browse Source

Fix yet another pair of accelerator conflicts.
Fix "Find Symbol Declaration" having no accelerator.


git-svn-id: file:///var/svn/tigccpp/trunk/tigcc/ide@588 9552661e-59e3-4036-b4f2-dbe53926924f

kevinkofler 18 years ago
parent
commit
6eafa251ab
3 changed files with 6 additions and 5 deletions
  1. 2 2
      MainUnit.pas
  2. 2 2
      SourceFileWinUnit.dfm
  3. 2 1
      SourceFileWinUnit.pas

+ 2 - 2
MainUnit.pas

@@ -3,7 +3,7 @@
 
   Copyright (C) 2000-2004 Sebastian Reichelt
   Copyright (C) 2005 Fréderic Bour
-  Copyright (C) 2005 Kevin Kofler
+  Copyright (C) 2005-2006 Kevin Kofler
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -5424,7 +5424,7 @@ begin
 	with ActionFindSymbol do
 	begin
 		ActionList := Actions;
-		Caption := 'Find Symbol Declaration';
+		Caption := 'F&ind Symbol Declaration';
 		Category := 'Extension';
 		OnExecute := ActionFindSymbolExecute;
 	end;

+ 2 - 2
SourceFileWinUnit.dfm

@@ -254,14 +254,14 @@ object SourceFileForm: TSourceFileForm
     end
     object ActionFileCompile: TAction
       Category = 'File'
-      Caption = '&Compile'
+      Caption = 'C&ompile'
       Hint = 'Compile|Compile the file'
       ImageIndex = 9
       OnExecute = FileCompile
     end
     object ActionFileAddToProject: TAction
       Category = 'File'
-      Caption = '&Add to Project'
+      Caption = 'A&dd to Project'
       Hint = 'Add to Project|Add this file to the current project'
       ImageIndex = 8
       OnExecute = FileAddToProject

+ 2 - 1
SourceFileWinUnit.pas

@@ -2,6 +2,7 @@
   TIGCC IDE
 
   Copyright (C) 2000-2004 Sebastian Reichelt
+  Copyright (C) 2006 Kevin Kofler
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -786,7 +787,7 @@ begin
 	ActionFindSymbol := TAction.Create(Self);
 	with ActionFindSymbol do begin
 		ActionList := Actions;
-		Caption := 'Find Symbol Declaration';
+		Caption := 'F&ind Symbol Declaration';
 		Category := 'Extension';
 		OnExecute := ActionFindSymbolExecute;
 	end;