We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f877614 + 10b1e8c commit 92a3ec3Copy full SHA for 92a3ec3
1 file changed
clientgui/BOINCGUIApp.cpp
@@ -1,6 +1,6 @@
1
// This file is part of BOINC.
2
// https://boinc.berkeley.edu
3
-// Copyright (C) 2025 University of California
+// Copyright (C) 2026 University of California
4
//
5
// BOINC is free software; you can redistribute it and/or modify it
6
// under the terms of the GNU Lesser General Public License
@@ -856,6 +856,11 @@ bool CBOINCGUIApp::DetectDuplicateInstance() {
856
wxTheApp->GetAppName() + '-' + wxGetUserId(),
857
wxFileName::GetHomeDir() + "/Library/Application Support/BOINC"
858
);
859
+#elif defined(__WXGTK__)
860
+ m_pInstanceChecker = new wxSingleInstanceChecker(
861
+ wxTheApp->GetAppName() + '-' + wxGetUserId(),
862
+ wxFileName::GetTempDir()
863
+ );
864
#else
865
m_pInstanceChecker = new wxSingleInstanceChecker();
866
#endif
0 commit comments