diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-10-31 22:18:22 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-10-31 22:18:22 +0000 |
| commit | d849b4462100259fa8765f92e445b747a350d764 (patch) | |
| tree | df8a8547d15e4f82a2ba8d7a9e111b8bed01f006 /src/plugins/General/library/libraryfactory.cpp | |
| parent | d844079fbfa0ae3453717292a74c576d21951d2c (diff) | |
| download | qmmp-d849b4462100259fa8765f92e445b747a350d764.tar.gz qmmp-d849b4462100259fa8765f92e445b747a350d764.tar.bz2 qmmp-d849b4462100259fa8765f92e445b747a350d764.zip | |
library: added database initialization
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9543 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/library/libraryfactory.cpp')
| -rw-r--r-- | src/plugins/General/library/libraryfactory.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/General/library/libraryfactory.cpp b/src/plugins/General/library/libraryfactory.cpp index 9e9e5a54b..782d48681 100644 --- a/src/plugins/General/library/libraryfactory.cpp +++ b/src/plugins/General/library/libraryfactory.cpp @@ -21,7 +21,7 @@ #include <QMessageBox> #include <QtPlugin> #include <qmmp/qmmp.h> -//#include "history.h" +#include "library.h" //#include "historysettingsdialog.h" #include "libraryfactory.h" @@ -38,11 +38,12 @@ GeneralProperties LibraryFactory::properties() const QObject *LibraryFactory::create(QObject *parent) { - return nullptr; + return new Library(parent); } QDialog *LibraryFactory::createConfigDialog(QWidget *parent) { + Q_UNUSED(parent); return nullptr; } |
