GNOME Bugzilla – Bug 580556
Resync with libegg to remove deprecated GTK+ symbols
Last modified: 2009-06-13 23:13:08 UTC
Evince uses the deprecated gtk_widget_get_action in copy-pasted code from ligegg: cut-n-paste/toolbar-editor/egg-editable-toolbar.c:203: action = gtk_widget_get_action (widget); cut-n-paste/toolbar-editor/egg-editable-toolbar.c:229: action = gtk_widget_get_action (widget); cut-n-paste/toolbar-editor/egg-editable-toolbar.c:500: GtkAction *action = gtk_widget_get_action (GTK_WIDGET (item)); The replacement gtk_activatable_get_related_action requires gtk 2.16 and libegg has added a check to use it if the available gtk version is high enough. You should resync with libegg to get that code. The relevant commit it here: http://git.gnome.org/cgit/libegg/commit/?id=3262b337f4527d0397032a6094de7b0c9e4ad3a5
Created attachment 133511 [details] [review] Replace deprecated gtk symbols
Applied, thanks a lot!