GNOME Bugzilla – Bug 572241
Remove deprecated GTK+ symbols
Last modified: 2009-06-13 23:17:56 UTC
http://live.gnome.org/GnomeGoals/RemoveDeprecatedSymbols/GTK%2B ./src/eggfindbar.c: gtk_tool_item_set_tooltip (priv->previous_button, GTK_TOOLBAR (find_bar)->tooltips, ./src/eggfindbar.c: gtk_tool_item_set_tooltip (priv->next_button, GTK_TOOLBAR (find_bar)->tooltips, ./src/eggfindbar.c: gtk_tool_item_set_tooltip (priv->case_button, GTK_TOOLBAR (find_bar)->tooltips, http://library.gnome.org/devel/gtk/2.11/GtkToolItem.html#gtk-tool-item-set-tooltip
This needs fixing in libegg, we are you slurping that in...
s/you/just/ :)
Alright, let's move :)
Looks like it's already fixed but just ifdeffed: 360 #if GTK_CHECK_VERSION (2, 11, 5) 361 gtk_widget_set_tooltip_text (GTK_WIDGET (priv->case_button), 362 _("Toggle case sensitive search")); 363 #else 364 gtk_tool_item_set_tooltip (priv->case_button, GTK_TOOLBAR (find_bar)->tooltips, 365 _("Toggle case sensitive search"), 366 NULL); 367 #endif Btw, there's no eggfindbar in libegg. Google indicates that it is developed in evince's source tree.
Yeah, so: + not in libegg + already fixed Really closing the bug :-)
OK, Comment to myself: Currently http://www.gnome.org/~fpeters/299.html lists for devhelp **2.22** "GTK_CHECK_CAST, GTK_CHECK_CLASS_CAST, GTK_CHECK_CLASS_TYPE, GTK_CHECK_TYPE, GtkType, gtk_box_pack_end_defaults" as deprecated GTK+ symbols. All these deprecated GTK+ symbols do not exist anymore in devhelp trunk. Hence whitelisting them.