// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#ifdef __VMS
-#define XtParent XTPARENT
-#endif
-
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
// the character passed through)
cbs->doit = False;
- GetEventHandler()->ProcessEvent(event);
+ HandleWindowEvent(event);
if ( !InSetValue() && m_processedDefault )
{
wxTextCtrl *tw = (wxTextCtrl *) clientData;
wxFocusEvent event(wxEVT_SET_FOCUS, tw->GetId());
event.SetEventObject(tw);
- tw->GetEventHandler()->ProcessEvent(event);
+ tw->HandleWindowEvent(event);
}
static void
wxTextCtrl *tw = (wxTextCtrl *) clientData;
wxFocusEvent event(wxEVT_KILL_FOCUS, tw->GetId());
event.SetEventObject(tw);
- tw->GetEventHandler()->ProcessEvent(event);
+ tw->HandleWindowEvent(event);
}
static void wxTextWindowActivateProc(Widget w, XtPointer clientData,