* @brief MainWindow::openFolder open the folder in the default file manager */
| 1240 | * @brief MainWindow::openFolder open the folder in the default file manager |
| 1241 | */ |
| 1242 | void MainWindow::openFolder() { |
| 1243 | QString dir = |
| 1244 | Util::getDir(ui->treeView->currentIndex(), false, model, proxyModel); |
| 1245 | |
| 1246 | QString path = QDir::toNativeSeparators(dir); |
| 1247 | QDesktopServices::openUrl(QUrl::fromLocalFile(path)); |
| 1248 | } |
| 1249 | |
| 1250 | /** |
| 1251 | * @brief MainWindow::addFolder add a new folder to store passwords in |
nothing calls this directly
no outgoing calls
no test coverage detected