| 2369 | } |
| 2370 | |
| 2371 | QString LibraryWindow::currentFolderPath() |
| 2372 | { |
| 2373 | QString path; |
| 2374 | |
| 2375 | if (foldersView->selectionModel()->selectedRows().length() > 0) |
| 2376 | path = foldersModel->getFolderPath(foldersModelProxy->mapToSource(foldersView->currentIndex())); |
| 2377 | else |
| 2378 | path = foldersModel->getFolderPath(QModelIndex()); |
| 2379 | |
| 2380 | QLOG_DEBUG() << "current folder path : " << QDir::cleanPath(currentPath() + path); |
| 2381 | |
| 2382 | return QDir::cleanPath(currentPath() + path); |
| 2383 | } |
| 2384 | |
| 2385 | void LibraryWindow::showExportComicsInfo() |
| 2386 | { |
nothing calls this directly
no test coverage detected