// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "spinctrl.h"
#endif
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
#include "wx/spinctrl.h"
#if wxUSE_SPINCTRL
bool wxSpinCtrl::IsOwnGtkWindow( GdkWindow *window )
{
- return GTK_SPIN_BUTTON(m_widget)->panel == window;
+ if (GTK_SPIN_BUTTON(m_widget)->entry.text_area == window) return TRUE;
+
+ if (GTK_SPIN_BUTTON(m_widget)->panel == window) return TRUE;
+
+ return FALSE;
}
void wxSpinCtrl::ApplyWidgetStyle()