Bug 55210
Summary: | [GTK] Add gtk_widget_style_attach/gtk_style_attach to GtkVesioning.h | ||
---|---|---|---|
Product: | WebKit | Reporter: | Alejandro G. Castro <alex> |
Component: | WebKitGTK | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WONTFIX | ||
Severity: | Normal | CC: | mrobinson |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | PC | ||
OS: | Linux |
Alejandro G. Castro
We can add this code in GtkVersioning:
#if GTK_CHECK_VERSION(2, 20, 0)
gtk_widget_style_attach(widget);
#else
widget->style = gtk_style_attach(gtk_widget_get_style(widget), window);
#endif
It is located at least in the webkit1 and webkit2 widget.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Martin Robinson
I think we can avoid this now that we no longer have GTK+ 2 support.