| 41 | } |
| 42 | |
| 43 | void AppsDB::launchApp(const QString &desktopFile) |
| 44 | { |
| 45 | auto info = AppsDB::appInfo(desktopFile); |
| 46 | m_launcher->launch(info.value("executable").toString()); |
| 47 | this->addRecentApp(desktopFile); |
| 48 | } |
| 49 | |
| 50 | void AppsDB::countUpApp(const QString &desktopFile) |
| 51 | { |
nothing calls this directly
no test coverage detected