diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-08-13 10:46:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2020-08-13 10:46:51 +0000 |
| commit | 6cf6bc2f667ea229d3864a8767982bdecab7b146 (patch) | |
| tree | afd9602f80bad18e6c69d74feb9d85c561cf65ff /src/qmmpui/qmmpuiplugincache_p.h | |
| parent | 90dedc4493d21f3057d86ce4289eee6471a243b5 (diff) | |
| download | qmmp-6cf6bc2f667ea229d3864a8767982bdecab7b146.tar.gz qmmp-6cf6bc2f667ea229d3864a8767982bdecab7b146.tar.bz2 qmmp-6cf6bc2f667ea229d3864a8767982bdecab7b146.zip | |
coding style fixes
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9472 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/qmmpuiplugincache_p.h')
| -rw-r--r-- | src/qmmpui/qmmpuiplugincache_p.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/qmmpui/qmmpuiplugincache_p.h b/src/qmmpui/qmmpuiplugincache_p.h index 4454b3045..db5c149d6 100644 --- a/src/qmmpui/qmmpuiplugincache_p.h +++ b/src/qmmpui/qmmpuiplugincache_p.h @@ -36,7 +36,7 @@ class QmmpUiPluginCache { public: QmmpUiPluginCache(const QString &file, QSettings *settings); - QmmpUiPluginCache(QObject *instance); + explicit QmmpUiPluginCache(QObject *instance); const QString shortName() const; const QString file() const; @@ -54,12 +54,12 @@ private: void loadTranslation(const QString &translation); QString m_path; QString m_shortName; - bool m_error; - QObject *m_instance; - GeneralFactory *m_generalFactory; - UiFactory *m_uiFactory; - FileDialogFactory *m_fileDialogFactory; - int m_priority; + bool m_error = false; + QObject *m_instance = nullptr; + GeneralFactory *m_generalFactory = nullptr; + UiFactory *m_uiFactory = nullptr; + FileDialogFactory *m_fileDialogFactory = nullptr; + int m_priority = 0; }; #endif // QMMPUIPLUGINCACHE_P_H |
