SF.net SVN: geany:[4868] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Mon May 3 14:38:26 UTC 2010


Revision: 4868
          http://geany.svn.sourceforge.net/geany/?rev=4868&view=rev
Author:   ntrel
Date:     2010-05-03 14:38:25 +0000 (Mon, 03 May 2010)

Log Message:
-----------
Fix setting wrong accelerator for 2 Edit->Commands items (patch by
Anonymous, #2995593).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/keybindings.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-04-30 15:02:33 UTC (rev 4867)
+++ trunk/ChangeLog	2010-05-03 14:38:25 UTC (rev 4868)
@@ -1,3 +1,10 @@
+2010-05-03  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/keybindings.c:
+   Fix setting wrong accelerator for 2 Edit->Commands items (patch by
+   Anonymous, #2995593).
+
+
 2010-04-30  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/editor.c:

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2010-04-30 15:02:33 UTC (rev 4867)
+++ trunk/src/keybindings.c	2010-05-03 14:38:25 UTC (rev 4868)
@@ -313,10 +313,10 @@
 		GDK_v, GDK_CONTROL_MASK, "menu_paste", _("Paste"), NULL);
 	keybindings_set_item(group, GEANY_KEYS_CLIPBOARD_COPYLINE, NULL,
 		GDK_c, GDK_CONTROL_MASK | GDK_SHIFT_MASK, "edit_copyline", _("_Copy Current Line(s)"),
-		LW(cut_current_line_s_1));
+		LW(copy_current_line_s_1));
 	keybindings_set_item(group, GEANY_KEYS_CLIPBOARD_CUTLINE, NULL,
 		GDK_x, GDK_CONTROL_MASK | GDK_SHIFT_MASK, "edit_cutline", _("_Cut Current Line(s)"),
-		LW(copy_current_line_s_1));
+		LW(cut_current_line_s_1));
 
 	group = ADD_KB_GROUP(SELECT, _("Select"), cb_func_select_action);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list