From: Simon Tatham Date: Sat, 3 Oct 2015 11:28:00 +0000 (+0100) Subject: GTK 3 prep: use gtk_radio_menu_item_get_group(). X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=07906104a2a67221913aebc5f0a5c1e00f3869d9;p=sgt-puzzles.git GTK 3 prep: use gtk_radio_menu_item_get_group(). Replaces the previous deprecated spelling. We now build cleanly with -DGTK_DISABLE_DEPRECATED. --- diff --git a/gtk.c b/gtk.c index 4af5022..d89914f 100644 --- a/gtk.c +++ b/gtk.c @@ -2299,7 +2299,7 @@ static frontend *new_window(char *arg, int argtype, char **error) menuitem = gtk_radio_menu_item_new_with_label(fe->preset_radio, name); fe->preset_radio = - gtk_radio_menu_item_group(GTK_RADIO_MENU_ITEM(menuitem)); + gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(menuitem)); fe->n_preset_menu_items++; gtk_container_add(GTK_CONTAINER(submenu), menuitem); g_object_set_data(G_OBJECT(menuitem), "user-data", params); @@ -2313,7 +2313,7 @@ static frontend *new_window(char *arg, int argtype, char **error) gtk_radio_menu_item_new_with_label(fe->preset_radio, "Custom..."); fe->preset_radio = - gtk_radio_menu_item_group(GTK_RADIO_MENU_ITEM(menuitem)); + gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(menuitem)); gtk_container_add(GTK_CONTAINER(submenu), menuitem); g_object_set_data(G_OBJECT(menuitem), "user-data", GINT_TO_POINTER(CFG_SETTINGS));