GNOME Bugzilla – Bug 338468
display capplet does use deprecated GtkOptionMenu API
Last modified: 2006-07-06 14:25:15 UTC
We should use the GtkComboBox API (which make some parts of the code even cleaner).
Created attachment 63460 [details] [review] Prposed patch (tested)
> + GtkComboBox *combo = GTK_COMBO_BOX (screen_info->resolution_widget); > + GtkListStore* store = gtk_list_store_new(N_COLUMNS, G_TYPE_STRING, G_TYPE_INT); Isn't that an issue for some compiler? Other way the patch looks fine, feel free to commit with that fixed
2006-07-06 Sven Herzberg <herzi@gnome-de.org> * capplets/display/main.c: replaced GtkOptionMenu by GtkComboBox; Closes: #338468