| 1993 | } |
| 1994 | |
| 1995 | void LibraryWindow::rescanFolderForXMLInfo(QModelIndex modelIndex) |
| 1996 | { |
| 1997 | importWidget->setXMLScanLook(); |
| 1998 | showImportingWidget(); |
| 1999 | |
| 2000 | QString currentLibrary = selectedLibrary->currentText(); |
| 2001 | QString path = libraries.getPath(currentLibrary); |
| 2002 | _lastAdded = currentLibrary; |
| 2003 | |
| 2004 | xmlInfoLibraryScanner->scanFolder(path, LibraryPaths::libraryDataPath(path), QDir::cleanPath(currentPath() + foldersModel->getFolderPath(modelIndex)), modelIndex); |
| 2005 | } |
| 2006 | |
| 2007 | void LibraryWindow::cancelCreating() |
| 2008 | { |
nothing calls this directly
no test coverage detected