| 1654 | } |
| 1655 | |
| 1656 | void MainWin::openRecentProject(const QUrl& url) { |
| 1657 | if (url.isLocalFile()) // fix for Windows |
| 1658 | this->openProject(url.toLocalFile()); |
| 1659 | else |
| 1660 | this->openProject(url.path()); |
| 1661 | } |
| 1662 | |
| 1663 | /*! |
| 1664 | Closes the current project, if available. Return \c true, if the project was closed. |
nothing calls this directly
no test coverage detected