mirror of https://github.com/PCSX2/pcsx2.git
"PocessEvent" should be "ProcessEvent"
parent
1467a90c5d
commit
458f170830
|
@ -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++
|
Loading…
Reference in New Issue