X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c7193f282111a7658c9c47b8817b3412b35c30fe..4e15d1caa03346c126015019c1fdf093033ef40b:/src/gtk/infobar.cpp?ds=sidebyside diff --git a/src/gtk/infobar.cpp b/src/gtk/infobar.cpp index f6ceee09db..9963cdb516 100644 --- a/src/gtk/infobar.cpp +++ b/src/gtk/infobar.cpp @@ -82,8 +82,12 @@ namespace inline bool UseNative() { +#ifdef __WXGTK3__ + return true; +#else // native GtkInfoBar widget is only available in GTK+ 2.18 and later return gtk_check_version(2, 18, 0) == 0; +#endif } } // anonymous namespace @@ -275,7 +279,7 @@ void wxInfoBar::DoApplyWidgetStyle(GtkRcStyle *style) wxInfoBarGeneric::DoApplyWidgetStyle(style); if ( UseNative() ) - gtk_widget_modify_style(m_impl->m_label, style); + GTKApplyStyle(m_impl->m_label, style); } #endif // wxUSE_INFOBAR