[maemo-commits] [maemo-commits] r12321 - in projects/haf/trunk/hildon-desktop: . src

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Fri Jun 15 17:52:32 EEST 2007
Author: lucasr
Date: 2007-06-15 17:52:30 +0300 (Fri, 15 Jun 2007)
New Revision: 12321

Modified:
   projects/haf/trunk/hildon-desktop/ChangeLog
   projects/haf/trunk/hildon-desktop/src/hd-switcher-menu.c
Log:
2007-06-14  Lucas Rocha  <lucas.rocha at nokia.com>

	* src/hd-switcher-menu.c: fixed notification filtering to discard all
	notifications with "system.note" prefix in their category.


Modified: projects/haf/trunk/hildon-desktop/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-desktop/ChangeLog	2007-06-15 14:40:46 UTC (rev 12320)
+++ projects/haf/trunk/hildon-desktop/ChangeLog	2007-06-15 14:52:30 UTC (rev 12321)
@@ -6,6 +6,11 @@
 
 2007-06-14  Lucas Rocha  <lucas.rocha at nokia.com>
 
+	* src/hd-switcher-menu.c: fixed notification filtering to discard all
+	notifications with "system.note" prefix in their category.
+
+2007-06-14  Lucas Rocha  <lucas.rocha at nokia.com>
+
 	* src/hd-applications-menu.c: move focus to applications pane when
 	tapping on a category on the left pane. Fixes bug NB#60548.
 

Modified: projects/haf/trunk/hildon-desktop/src/hd-switcher-menu.c
===================================================================
--- projects/haf/trunk/hildon-desktop/src/hd-switcher-menu.c	2007-06-15 14:40:46 UTC (rev 12320)
+++ projects/haf/trunk/hildon-desktop/src/hd-switcher-menu.c	2007-06-15 14:52:30 UTC (rev 12321)
@@ -1521,7 +1521,7 @@
   {	  
     category = g_value_get_string (hint);
 
-    if (g_str_equal (category, "system.note.dialog"))
+    if (g_str_has_prefix (category, "system.note"))
       goto out;	  
   }
   


More information about the maemo-commits mailing list