"PocessEvent" should be "ProcessEvent"

monster860 2014-08-26 14:58:00 -07:00
parent 1467a90c5d
commit 458f170830
1 changed files with 101 additions and 101 deletions

@ -69,7 +69,7 @@ There are several ways to send events between windows in wxWidgets, and only one
// The wxApp class does not have a GetEventHandler() so for it you use this: // The wxApp class does not have a GetEventHandler() so for it you use this:
wxGetApp()->AddPendingEvent( evt ); // safe from any thread wxGetApp()->AddPendingEvent( evt ); // safe from any thread
wxGetApp()->PocessEvent( evt ); // safe form GUI thread only wxGetApp()->ProcessEvent( evt ); // safe form GUI thread only
``` ```
This can be a bit confusing because wx has several other options for sending events, and most of them have caveats as noted below: This can be a bit confusing because wx has several other options for sending events, and most of them have caveats as noted below:
```C++ ```C++