GNOME Bugzilla – Bug 609041
Fix previous patch to use accessor functions
Last modified: 2010-02-07 22:55:17 UTC
To replace widget->style = gtk_style_attach (widget->style, widget->window); I used: gtk_widget_set_style (widget, gtk_style_attach (gtk_widget_get_style (widget), window)); but this is not correct, the correct function is: gtk_widget_style_attach (widget);
Created attachment 153057 [details] [review] Fix previous patch to use accessor functions
As said before we cannot bump gtk dependency so much, since the supported version on Winows is gtk 2.16
Hello Paolo, Glade master already depends on GTK+ 2.19.0
Review of attachment 153057 [details] [review]: Again, I didnt compile it but it looks small and ok, please go ahead and commit to master.
Comment on attachment 153057 [details] [review] Fix previous patch to use accessor functions commit b5e6b7442611fc4de4276e3d095203b18d8aa287
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you Tristan for the review.