Browse Source

Oops, Ctrl+E is already taken, use Ctrl+G instead.

git-svn-id: file:///var/svn/tigccpp/trunk@838 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 18 years ago
parent
commit
dc4694a81e
3 changed files with 3 additions and 3 deletions
  1. 1 1
      ktigcc/mainform.ui.h
  2. 1 1
      tigcc/doc/System/Info/ide/editor.hss
  3. 1 1
      tigcc/ide/MainUnit.pas

+ 1 - 1
ktigcc/mainform.ui.h

@@ -1088,7 +1088,7 @@ void MainForm::init()
   accel->setItemEnabled(10,FALSE);
   accel->insertItem(CTRL+Key_Tab,11);
   accel->setItemEnabled(11,TRUE);
-  accel->insertItem(CTRL+Key_E,12);
+  accel->insertItem(CTRL+Key_G,12);
   accel->setItemEnabled(12,TRUE);
   accel->insertItem(SHIFT+CTRL+ALT+Key_F9,13);
   accel->setItemEnabled(13,TRUE);

+ 1 - 1
tigcc/doc/System/Info/ide/editor.hss

@@ -8,6 +8,6 @@ If you want to open a source file whose name is in the current source code, move
 <BR><BR>
 If the cursor is on an identifier, press F1 to display help on that identifier.
 <BR><BR>
-You can use Ctrl+Tab or Ctrl+E to switch between source files. Files in the project tree which are not visible at the moment are skipped.
+You can use Ctrl+Tab or Ctrl+G to switch between source files. Files in the project tree which are not visible at the moment are skipped.
 <BR><BR>
 Press Ctrl+Space or Ctrl+M to activate auto-completion for the current word. Press Ctrl+J to use a predefined template.

+ 1 - 1
tigcc/ide/MainUnit.pas

@@ -5043,7 +5043,7 @@ begin
 			TransferTarget := ttVTI;
 		SavePreferences;
 		UpdateDebugSettings;
-	end else if ((Key = vk_Tab) or (Key = Ord('E'))) and (Shift = [ssCtrl]) then begin
+	end else if ((Key = vk_Tab) or (Key = Ord('G'))) and (Shift = [ssCtrl]) then begin
 		NewSelection := ProjectTree.Selected;
 		if Assigned (NewSelection) then begin
 			repeat