| 1355 | } |
| 1356 | |
| 1357 | bool |
| 1358 | Singleton::notifyRecent(std::string const &name) |
| 1359 | { |
| 1360 | bool found = false; |
| 1361 | |
| 1362 | found = this->removeRecent(name); |
| 1363 | |
| 1364 | this->recentProfiles.push_front(name); |
| 1365 | |
| 1366 | return found; |
| 1367 | } |
| 1368 | |
| 1369 | bool |
| 1370 | Singleton::removeRecent(std::string const &name) |
no test coverage detected