///////////////////////////////////////////////////////////////////////////////
// Name: wx/msdos/apptrait.h
// Author: Michael Wetherell
-// RCS-ID: $Id$
// Copyright: (c) 2006 Michael Wetherell
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
class wxConsoleAppTraits : public wxConsoleAppTraitsBase
{
public:
- virtual wxEventLoop *CreateEventLoop() { return NULL; }
+ virtual wxEventLoopBase *CreateEventLoop() { return NULL; }
#if wxUSE_TIMER
virtual wxTimerImpl *CreateTimerImpl(wxTimer *) { return NULL; }
#endif // wxUSE_TIMER
class wxGUIAppTraits : public wxGUIAppTraitsBase
{
public:
- virtual wxEventLoop *CreateEventLoop();
- virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
+ virtual wxEventLoopBase *CreateEventLoop();
+ virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
#if wxUSE_TIMER
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);