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 873223b + 1edba25 commit f9cb224Copy full SHA for f9cb224
installer/InstallerStrings.cpp
@@ -1,6 +1,6 @@
1
// This file is part of BOINC.
2
// https://boinc.berkeley.edu
3
-// Copyright (C) 2024 University of California
+// Copyright (C) 2025 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
@@ -31,6 +31,9 @@ InstallerStrings::~InstallerStrings() {
31
}
32
33
const std::string& InstallerStrings::get(const std::string& key) {
34
+ if (!key._Starts_with("IDS_")) {
35
+ return key;
36
+ }
37
if (strings.find(key) == strings.end()) {
38
std::cerr << "WARNING: Key " << key << " not found." << std::endl;
39
return key;
0 commit comments