| 1839 | } |
| 1840 | |
| 1841 | QString MainWindow::getLastResults() const |
| 1842 | { |
| 1843 | if (!mProjectFile || mProjectFile->getBuildDir().isEmpty()) |
| 1844 | return QString(); |
| 1845 | return QFileInfo(mProjectFile->getFilename()).absolutePath() + '/' + mProjectFile->getBuildDir() + "/lastResults.xml"; |
| 1846 | } |
| 1847 | |
| 1848 | bool MainWindow::loadLastResults() |
| 1849 | { |
nothing calls this directly
no test coverage detected