| 176 | void ActivityManager::goToSettings() { replaceActivity(std::make_unique<SettingsActivity>(renderer, mappedInput)); } |
| 177 | |
| 178 | void ActivityManager::goToFileBrowser(std::string path) { |
| 179 | replaceActivity(std::make_unique<FileBrowserActivity>(renderer, mappedInput, std::move(path))); |
| 180 | } |
| 181 | |
| 182 | void ActivityManager::goToRecentBooks() { |
| 183 | replaceActivity(std::make_unique<RecentBooksActivity>(renderer, mappedInput)); |
no outgoing calls
no test coverage detected