| 2264 | } |
| 2265 | |
| 2266 | static void DoWarning(const std::string& strWarning) |
| 2267 | { |
| 2268 | static bool fWarned = false; |
| 2269 | SetMiscWarning(strWarning); |
| 2270 | if (!fWarned) { |
| 2271 | AlertNotify(strWarning); |
| 2272 | fWarned = true; |
| 2273 | } |
| 2274 | } |
| 2275 | |
| 2276 | /** Private helper function that concatenates warning messages. */ |
| 2277 | static void AppendWarning(std::string& res, const std::string& warn) |
no test coverage detected