/**
@class wxSingleInstanceChecker
- @wxheader{snglinst.h}
wxSingleInstanceChecker class allows to check that only a single instance of a
program is running. To do it, you should create an object of this class. As
{
wxLogError(_("Another program instance is already running, aborting."));
- delete m_checker; // OnExit() won't be called if we return @false
- m_checker = @NULL;
+ delete m_checker; // OnExit() won't be called if we return false
+ m_checker = NULL;
- return @false;
+ return false;
}
... more initializations ...
- return @true;
+ return true;
}
int MyApp::OnExit()