// declarations
// ============================================================================
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "inpcons.h"
#endif
// implementation
// ============================================================================
+wxInputConsumer::wxInputConsumer()
+{
+ m_inputHandler = NULL;
+}
+
// ----------------------------------------------------------------------------
// focus/activation handling
// ----------------------------------------------------------------------------
// the actions
// ----------------------------------------------------------------------------
-bool wxInputConsumer::PerformAction(const wxControlAction& action,
- long numArg,
- const wxString& strArg)
+bool wxInputConsumer::PerformAction(const wxControlAction& WXUNUSED(action),
+ long WXUNUSED(numArg),
+ const wxString& WXUNUSED(strArg))
{
return FALSE;
}