| 1791 | } |
| 1792 | |
| 1793 | void LibraryWindow::create(QString source, QString dest, QString name) |
| 1794 | { |
| 1795 | QLOG_INFO() << QString("About to create a library from '%1' to '%2' with name '%3'").arg(source, dest, name); |
| 1796 | libraryCreator->createLibrary(source, dest); |
| 1797 | libraryCreator->start(); |
| 1798 | _lastAdded = name; |
| 1799 | _sourceLastAdded = source; |
| 1800 | |
| 1801 | importWidget->setImportLook(); |
| 1802 | showImportingWidget(); |
| 1803 | } |
| 1804 | |
| 1805 | void LibraryWindow::reloadCurrentLibrary() |
| 1806 | { |
no test coverage detected