[maemo-commits] [maemo-commits] r13864 - in projects/haf/trunk/hildon-desktop: . libhildonwm

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Sep 17 18:44:43 EEST 2007
Author: moimart
Date: 2007-09-17 18:44:41 +0300 (Mon, 17 Sep 2007)
New Revision: 13864

Modified:
   projects/haf/trunk/hildon-desktop/ChangeLog
   projects/haf/trunk/hildon-desktop/libhildonwm/hd-keys.c
Log:
2007-09-17  Moises Martinez  <moises.martinez at nokia.com>

        * libhildonwm/hd-keys.c: (hd_keys_shortcut_new):
        - Fixed typo with - and + keys
	* ChangeLog updated.



Modified: projects/haf/trunk/hildon-desktop/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-desktop/ChangeLog	2007-09-17 15:11:33 UTC (rev 13863)
+++ projects/haf/trunk/hildon-desktop/ChangeLog	2007-09-17 15:44:41 UTC (rev 13864)
@@ -1,3 +1,8 @@
+2007-09-17  Moises Martinez  <moises.martinez at nokia.com>
+
+	* libhildonwm/hd-keys.c: (hd_keys_shortcut_new):
+	- Fixed typo with - and + keys
+
 2007-09-17  Lucas Rocha  <lucas.rocha at nokia.com>
 
 	* src/hd-applications-menu.c (hd_applications_menu_create_menu,

Modified: projects/haf/trunk/hildon-desktop/libhildonwm/hd-keys.c
===================================================================
--- projects/haf/trunk/hildon-desktop/libhildonwm/hd-keys.c	2007-09-17 15:11:33 UTC (rev 13863)
+++ projects/haf/trunk/hildon-desktop/libhildonwm/hd-keys.c	2007-09-17 15:44:41 UTC (rev 13864)
@@ -474,11 +474,11 @@
 
     switch (*keydef)
     {
-      case '+':
+      case '-':
  	ks = XK_minus;	    
 	break;
 	
-      case '-':
+      case '+':
         ks = XK_plus;
 	break;
 	


More information about the maemo-commits mailing list