Fix typo in wxSingleInstanceChecker docs, props Lauri Nurmi.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty 2013-08-16 18:17:01 +00:00
parent 0c80814ffe
commit fa0681e744

View File

@ -23,7 +23,7 @@
bool MyApp::OnInit() bool MyApp::OnInit()
{ {
m_checker = new wxSingleInstanceChecker; m_checker = new wxSingleInstanceChecker;
if ( m_checker-IsAnotherRunning() ) if ( m_checker->IsAnotherRunning() )
{ {
wxLogError(_("Another program instance is already running, aborting.")); wxLogError(_("Another program instance is already running, aborting."));