aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/qmmpuiplugincache_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmpui/qmmpuiplugincache_p.h')
-rw-r--r--src/qmmpui/qmmpuiplugincache_p.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qmmpui/qmmpuiplugincache_p.h b/src/qmmpui/qmmpuiplugincache_p.h
index 1a4be8918..7743ebba6 100644
--- a/src/qmmpui/qmmpuiplugincache_p.h
+++ b/src/qmmpui/qmmpuiplugincache_p.h
@@ -27,6 +27,7 @@
class GeneralFactory;
class UiFactory;
+class FileDialogFactory;
/*! @internal
* @author Ilya Kotov <forkotov02@hotmail.ru>
@@ -35,6 +36,7 @@ class QmmpUiPluginCache
{
public:
QmmpUiPluginCache(const QString &file, QSettings *settings);
+ QmmpUiPluginCache(QObject *instance);
const QString shortName() const;
const QString file() const;
@@ -43,6 +45,7 @@ public:
GeneralFactory *generalFactory();
UiFactory *uiFactory();
+ FileDialogFactory *fileDialogFactory();
static void cleanup(QSettings *settings);
@@ -54,6 +57,7 @@ private:
QObject *m_instance;
GeneralFactory *m_generalFactory;
UiFactory *m_uiFactory;
+ FileDialogFactory *m_fileDialogFactory;
int m_priority;
};