don't use @true and @NULL inside of @code sections
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -28,15 +28,15 @@
|
||||
{
|
||||
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()
|
||||
|
Reference in New Issue
Block a user