ProcessXEvent now returns TRUE if processed, FALSE if not

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14491 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-03-08 12:06:12 +00:00
parent 6f8239de23
commit 086fd5603b
3 changed files with 48 additions and 38 deletions

View File

@@ -74,7 +74,7 @@ public:
bool SendIdleEvents(wxWindow* win);
// Processes an X event.
virtual void ProcessXEvent(WXEvent* event);
virtual bool ProcessXEvent(WXEvent* event);
virtual void OnAssert(const wxChar *file, int line, const wxChar *msg);
@@ -94,7 +94,7 @@ public:
long GetMaxRequestSize() const { return m_maxRequestSize; }
// This handler is called when a property change event occurs
virtual void HandlePropertyChange(WXEvent *event);
virtual bool HandlePropertyChange(WXEvent *event);
// We need this before create the app
static WXDisplay* GetDisplay() { return ms_display; }