diff options
author | Ted Gould <ted@gould.cx> | 2010-07-07 13:48:58 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-07 13:48:58 -0500 |
commit | f94a35f1465e9ed59d09d4a11da897b98d93124a (patch) | |
tree | 4c8397a06e3391cc494f0a7abce845efae93cb05 | |
parent | 02c0cc726dbc168cccaa28ea60b66b64a1fb0091 (diff) | |
parent | eff1ffd59b4ca9ccfe11146559e070e8f4cf1f06 (diff) | |
download | libdbusmenu-f94a35f1465e9ed59d09d4a11da897b98d93124a.tar.gz libdbusmenu-f94a35f1465e9ed59d09d4a11da897b98d93124a.tar.bz2 libdbusmenu-f94a35f1465e9ed59d09d4a11da897b98d93124a.zip |
Lowering the warning from group not being found warnings.
-rw-r--r-- | libdbusmenu-gtk/menuitem.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libdbusmenu-gtk/menuitem.c b/libdbusmenu-gtk/menuitem.c index 9924546..5846aa7 100644 --- a/libdbusmenu-gtk/menuitem.c +++ b/libdbusmenu-gtk/menuitem.c @@ -264,9 +264,10 @@ dbusmenu_menuitem_property_set_shortcut_menuitem (DbusmenuMenuitem * menuitem, c GtkAccelGroup * group = gtk_accel_group_from_accel_closure(closure); - /* Seriously, if this returns NULL something is seriously - wrong in GTK. */ - g_return_val_if_fail(group != NULL, FALSE); + /* Apparently this is more common than I thought. */ + if (group == NULL) { + return FALSE; + } GtkAccelKey * key = gtk_accel_group_find(group, find_closure, closure); /* Again, not much we can do except complain loudly. */ |