+ // use the default name, which is a combination of wxTheApp->GetAppName()
+ // and wxGetUserId() for mutex/lock file
+ //
+ // this is called implicitly by IsAnotherRunning() if the checker hadn't
+ // been created until then
+ bool CreateDefault()
+ {
+ wxCHECK_MSG( wxTheApp, false, "must have application instance" );
+ return Create(wxTheApp->GetAppName() + '-' + wxGetUserId());
+ }
+