ProcessXEvent( &event );
}
else
-#ifdef __VMS
- XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput );
-#else
- XtAppProcessEvent( context, XtIMTimer|XtIMAlternateInput|XtIMSignal );
+ {
+ XtAppProcessEvent( context, XtIMTimer | XtIMAlternateInput
+#ifdef XtIMSignal
+ | XtIMSignal
#endif
+ );
+ }
return m_impl ? m_impl->GetKeepGoing() : true;
}
#include <sys/time.h>
#include <unistd.h>
-static XtInputId inputId;
static int idleFds[2] = { -1, -1 };
class wxIdlePipeModule : public wxModule
close( idleFds[1] );
}
private:
- DECLARE_DYNAMIC_CLASS(wxIdlePipeModule);
+ DECLARE_DYNAMIC_CLASS(wxIdlePipeModule)
};
IMPLEMENT_DYNAMIC_CLASS(wxIdlePipeModule, wxModule);
return false;
// install input handler for wxWakeUpIdle
- inputId = XtAppAddInput( (XtAppContext) wxTheApp->GetAppContext(),
- idleFds[0],
- (XtPointer)XtInputReadMask,
- wxInputCallback,
- NULL );
+ XtAppAddInput((XtAppContext) wxTheApp->GetAppContext(),
+ idleFds[0],
+ (XtPointer)XtInputReadMask,
+ wxInputCallback,
+ NULL);
return true;
}