]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/commitdiff
panel-plugin: migrate GtkTooltips to new simpler API.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 23 Oct 2019 02:27:10 +0000 (22:27 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 24 Oct 2019 13:26:40 +0000 (09:26 -0400)
In gtk+-3.x, the GtkTooltips struct is gone and you're supposed to use
the newer API that was available back in gtk+-2.x:

  https://developer.gnome.org/gtk2/stable/gtk-migrating-tooltips.html

For us, this is pretty straightforward: instead of declaring a GtkTooltips
member and doing stuff to it, we just call the gtk_widget_set_tooltip_text()
function on our plugin's eventbox instead.


No differences found