Bug 55210 - [GTK] Add gtk_widget_style_attach/gtk_style_attach to GtkVesioning.h
Summary: [GTK] Add gtk_widget_style_attach/gtk_style_attach to GtkVesioning.h
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Linux
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-02-25 02:49 PST by Alejandro G. Castro
Modified: 2014-04-08 18:46 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alejandro G. Castro 2011-02-25 02:49:00 PST
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.
Comment 1 Martin Robinson 2014-04-08 18:46:40 PDT
I think we can avoid this now that we no longer have GTK+ 2 support.