We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8919c2c + 3fdebcb commit 95adf93Copy full SHA for 95adf93
clientgui/BOINCGUIApp.cpp
@@ -461,8 +461,14 @@ bool CBOINCGUIApp::OnInit() {
461
// Detect if BOINC Manager is already running, if so, bring it into the
462
// foreground and then exit.
463
if (DetectDuplicateInstance()) {
464
- printf( "Another instance of BOINC Manager already running.\n");
465
- return false;
+ wxMessageDialog dialog(
+ NULL,
466
+ _("Another instance of BOINC Manager is already running."),
467
+ _("BOINC Manager"),
468
+ wxOK|wxICON_WARNING
469
+ );
470
+ dialog.ShowModal();
471
+ return false;
472
}
473
474
// Initialize the main document
0 commit comments