Do not set any flag for empty legacy menus
authorClaudio Saavedra <csaavedra@igalia.com>
Fri, 11 Sep 2009 15:18:12 +0000 (18:18 +0300)
committerClaudio Saavedra <csaavedra@igalia.com>
Fri, 11 Sep 2009 17:18:03 +0000 (20:18 +0300)
* hildon/hildon-program.c: (hildon_program_set_common_menu):
* hildon/hildon-window.c: (hildon_window_update_menu_flag):
This will probably not work fine with empty legacy menus added to
programs or windows and populated later, but so it's life.

ChangeLog
hildon/hildon-program.c
hildon/hildon-window.c

index 72839c4..7a6b893 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-09-11  Claudio Saavedra  <csaavedra@igalia.com>
+
+       Do not set any flag for empty legacy menus
+
+       * hildon/hildon-program.c: (hildon_program_set_common_menu):
+       * hildon/hildon-window.c: (hildon_window_update_menu_flag):
+       This will probably not work fine with empty legacy menus added to
+       programs or windows and populated later, but so it's life.
+
 2009-09-10  Claudio Saavedra  <csaavedra@igalia.com>
 
        Update the application menu flag for application-wise windows
index f2b1906..33205f0 100644 (file)
@@ -658,11 +658,17 @@ hildon_program_set_common_menu                  (HildonProgram *self,
     /* Only set the menu flag if there was no common menu and
        we are setting one. If we are unsetting the current common menu,
        remove the commmon menu flag. Otherwise, nothing to do. */
-    if (!priv->common_menu && menu) {
+
+    GList *menu_children = gtk_container_get_children (GTK_CONTAINER (menu));
+    if (!priv->common_menu
+        && menu && menu_children != NULL) {
         hildon_program_set_common_menu_flag (self, TRUE);
-    } else if (priv->common_menu && !menu) {
+    } else if (priv->common_menu &&
+               (!menu || menu_children == NULL))
+    {
         hildon_program_set_common_menu_flag (self, FALSE);
     }
+    g_list_free (menu_children);
 
     priv->common_menu = menu;
 
index bd84c32..3d70b02 100644 (file)
@@ -1364,8 +1364,9 @@ hildon_window_update_menu_flag (HildonWindow *self,
     } else {
         if (!priv->program || !hildon_program_get_common_menu (priv->program))
         {
-            hildon_window_set_menu_flag (self, priv->menu != NULL
-                                         && gtk_container_get_children (GTK_CONTAINER (priv->menu)));
+            GList *menu_children = gtk_container_get_children (GTK_CONTAINER (priv->menu));
+            hildon_window_set_menu_flag (self, priv->menu != NULL && menu_children != NULL);
+            g_free (menu_children);
         }
     }
 }