| 79 | } |
| 80 | |
| 81 | void ExportLibraryDialog::findPath() |
| 82 | { |
| 83 | QString s = QFileDialog::getExistingDirectory(0, tr("Destination directory"), "."); |
| 84 | if (!s.isEmpty()) { |
| 85 | path->setText(s); |
| 86 | accept->setEnabled(true); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void ExportLibraryDialog::close() |
| 91 | { |