replaced wxYield() call in PopupMenu() by a much safer wxYieldForCommandsOnly() - fixes tree ctrl bug

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-06-08 01:47:15 +00:00
parent 58b24a564c
commit ed45e26357
3 changed files with 52 additions and 6 deletions

View File

@@ -77,10 +77,25 @@ public:
static void CleanUp();
static bool RegisterWindowClasses();
// Convert Windows to argc, argv style
void ConvertToStandardCommandArgs(char* p);
// message processing
// ------------------
// process the given message
virtual void DoMessage(WXMSG *pMsg);
// retrieve the next message from the queue and process it
virtual bool DoMessage();
// preprocess the message
virtual bool ProcessMessage(WXMSG* pMsg);
// idle processing
// ---------------
void DeletePendingObjects();
bool ProcessIdle();