| 1193 | } |
| 1194 | |
| 1195 | void MainWindow::setFolderAsWorkspacePath(const QString &dir) |
| 1196 | { |
| 1197 | if (!dir.isEmpty()) { |
| 1198 | FolderAsWorkspaceDock *fawDock = findChild<FolderAsWorkspaceDock *>(); |
| 1199 | fawDock->setRootPath(dir); |
| 1200 | fawDock->setVisible(true); |
| 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | void MainWindow::reloadFile() |
| 1205 | { |
no test coverage detected