Fix typo in wxGUIEventLoop::ScheduleExit() in wxMotif.

This was broken in r74335.

See #15305.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74478 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-07-10 21:18:29 +00:00
parent c5453c7956
commit 5b526f4b85

View File

@@ -121,7 +121,7 @@ int wxGUIEventLoop::DoRun()
return exitcode;
}
void wxGUIEventLoop::SchduleExit(int rc)
void wxGUIEventLoop::ScheduleExit(int rc)
{
wxCHECK_RET( IsInsideRun(), wxT("can't call ScheduleExit() if not started") );