wxEventType event_type = wxEVT_NULL;
- // GdkDisplay is a GTK+ 2.1.0 thing
-#if defined(__WXGTK20__) && GTK_CHECK_VERSION(2, 1, 0)
+ // GdkDisplay is a GTK+ 2.2.0 thing
+#if defined(__WXGTK20__) && GTK_CHECK_VERSION(2, 2, 0)
if ( gdk_event->type == GDK_2BUTTON_PRESS &&
gdk_event->button >= 1 && gdk_event->button <= 3 )
{
{
// do we need to apply any changes at all?
if ( !forceStyle &&
- !m_hasFont && !m_hasFgCol &&
- (!m_hasBgCol || !m_backgroundColour.Ok()) )
+ !m_font.Ok() &&
+ !m_foregroundColour.Ok() && !m_backgroundColour.Ok() )
{
return NULL;
}
GtkRcStyle *style = gtk_rc_style_new();
- if ( m_hasFont )
+ if ( m_font.Ok() )
{
#ifdef __WXGTK20__
style->font_desc =