mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 09:16:16 +02:00
IDE: moved view jump history to view menu
git-svn-id: trunk@15391 -
This commit is contained in:
parent
96a7abc480
commit
6180c0bbed
@ -159,7 +159,6 @@ type
|
||||
itmJumpBack: TIDEMenuCommand;
|
||||
itmJumpForward: TIDEMenuCommand;
|
||||
itmAddJumpPoint: TIDEMenuCommand;
|
||||
itmJumpHistory: TIDEMenuCommand;
|
||||
itmJumpToNextError: TIDEMenuCommand;
|
||||
itmJumpToPrevError: TIDEMenuCommand;
|
||||
//itmBookmarks: TIDEMenuSection;
|
||||
@ -187,6 +186,7 @@ type
|
||||
itmViewRestrictionBrowser: TIDEMenuCommand;
|
||||
itmViewComponents: TIDEMenuCommand;
|
||||
itmViewToDoList: TIDEMenuCommand;
|
||||
itmJumpHistory: TIDEMenuCommand;
|
||||
//itmViewUnitWindows: TIDEMenuSection;
|
||||
itmViewUnits: TIDEMenuCommand;
|
||||
itmViewForms: TIDEMenuCommand;
|
||||
|
@ -474,7 +474,6 @@ begin
|
||||
CreateMenuItem(ParentMI,itmJumpBack,'itmJumpBack',lisMenuJumpBack, 'menu_search_jumpback');
|
||||
CreateMenuItem(ParentMI,itmJumpForward,'itmJumpForward',lisMenuJumpForward, 'menu_search_jumpforward');
|
||||
CreateMenuItem(ParentMI,itmAddJumpPoint,'itmAddJumpPoint',lisMenuAddJumpPointToHistory);
|
||||
CreateMenuItem(ParentMI,itmJumpHistory,'itmJumpHistory',lisMenuViewJumpHistory);
|
||||
CreateMenuItem(ParentMI,itmJumpToNextError,'itmJumpToNextError',lisMenuJumpToNextError);
|
||||
CreateMenuItem(ParentMI,itmJumpToPrevError,'itmJumpToPrevError',lisMenuJumpToPrevError);
|
||||
|
||||
@ -516,6 +515,7 @@ begin
|
||||
CreateMenuItem(ParentMI,itmViewRestrictionBrowser,'itmViewRestrictionBrowser',lisMenuViewRestrictionBrowser, 'menu_view_rectriction_browser');
|
||||
CreateMenuItem(ParentMI,itmViewComponents,'itmViewComponents',lisMenuViewComponents);
|
||||
CreateMenuItem(ParentMI,itmViewToDoList,'itmViewToDoList',lisMenuViewTodoList, 'menu_view_todo');
|
||||
CreateMenuItem(ParentMI,itmJumpHistory,'itmJumpHistory',lisMenuViewJumpHistory);
|
||||
|
||||
CreateMenuSeparatorSection(mnuView,itmViewUnitWindows,'itmViewUnitWindows');
|
||||
ParentMI:=itmViewUnitWindows;
|
||||
@ -859,7 +859,6 @@ begin
|
||||
itmJumpBack.Command:=GetCommand(ecJumpBack);
|
||||
itmJumpForward.Command:=GetCommand(ecJumpForward);
|
||||
itmAddJumpPoint.Command:=GetCommand(ecAddJumpPoint);
|
||||
itmJumpHistory.Command:=GetCommand(ecViewJumpHistory);
|
||||
itmJumpToNextError.Command:=GetCommand(ecJumpToNextError);
|
||||
itmJumpToPrevError.Command:=GetCommand(ecJumpToPrevError);
|
||||
itmSetFreeBookmark.Command:=GetCommand(ecSetFreeBookmark);
|
||||
@ -890,6 +889,7 @@ begin
|
||||
itmViewAnchorEditor.Command:=GetCommand(ecViewAnchorEditor);
|
||||
itmViewComponentPalette.Command:=GetCommand(ecToggleCompPalette);
|
||||
itmViewIDESpeedButtons.Command:=GetCommand(ecToggleIDESpeedBtns);
|
||||
itmJumpHistory.Command:=GetCommand(ecViewJumpHistory);
|
||||
//itmViewPackageLinks.Command:=GetCommand(ec?);
|
||||
|
||||
// project menu
|
||||
|
Loading…
Reference in New Issue
Block a user