[Aptitude-svn-commit] r4204 - in branches/aptitude-0.3/aptitude: . src

Daniel Burrows dburrows at costa.debian.org
Fri Sep 23 22:36:59 UTC 2005


Author: dburrows
Date: Fri Sep 23 22:36:55 2005
New Revision: 4204

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/ui.cc
Log:
Add shortcut characters for the resolver menu.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Fri Sep 23 22:36:55 2005
@@ -1,3 +1,9 @@
+2005-09-23  Daniel Burrows  <dburrows at debian.org>
+
+	* src/ui.cc:
+
+	  Add shortcut characters to the Resolver menu.
+
 2005-09-22  Daniel Burrows  <dburrows at debian.org>
 
 	* src/menu_tree.cc:

Modified: branches/aptitude-0.3/aptitude/src/ui.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/ui.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/ui.cc	Fri Sep 23 22:36:55 2005
@@ -1810,32 +1810,32 @@
 	       "ExamineSolution", N_("Examine the currently selected solution to the dependency problems."),
 	       sigc::ptr_fun(do_examine_solution),
 	       sigc::ptr_fun(do_examine_solution_enabled)),
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("^Apply Solution"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Apply ^Solution"),
 	       "ApplySolution", N_("Perform the actions contained in the currently selected solution."),
 	       sigc::ptr_fun(do_apply_solution),
 	       sigc::ptr_fun(do_apply_solution_enabled)),
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Next Solution"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("^Next Solution"),
 	       "NextSolution", N_("Select the next solution to the dependency problems."),
 	       sigc::ptr_fun(do_next_solution),
 	       sigc::ptr_fun(do_next_solution_enabled)),
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Previous Solution"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("^Previous Solution"),
 	       "PrevSolution", N_("Select the previous solution to the dependency problems."),
 	       sigc::ptr_fun(do_previous_solution),
 	       sigc::ptr_fun(do_previous_solution_enabled)),
 
   VS_MENU_SEPARATOR,
 
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Toggle Rejected"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Toggle ^Rejected"),
 	       "SolutionActionReject", N_("Toggle whether the currently selected action is rejected."),
 	       sigc::hide_return(resolver_toggle_rejected.make_slot()),
 	       resolver_toggle_rejected_enabled.make_slot()),
 
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Toggle Approved"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("Toggle ^Approved"),
 	       "SolutionActionApprove", N_("Toggle whether the currently selected action is approved."),
 	       sigc::hide_return(resolver_toggle_approved.make_slot()),
 	       resolver_toggle_approved_enabled.make_slot()),
 
-  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("View Target"),
+  vs_menu_info(vs_menu_info::VS_MENU_ITEM, N_("^View Target"),
 	       "InfoScreen", N_("View the package which will be affected by the selected action"),
 	       sigc::hide_return(resolver_view_target.make_slot()),
 	       resolver_view_target_enabled.make_slot()),



More information about the Aptitude-svn-commit mailing list