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/detailsdialog.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/detailsdialog.h')
| -rw-r--r-- | src/qmmpui/detailsdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qmmpui/detailsdialog.h b/src/qmmpui/detailsdialog.h index 725c6b817..c4c5e04e9 100644 --- a/src/qmmpui/detailsdialog.h +++ b/src/qmmpui/detailsdialog.h @@ -48,7 +48,7 @@ public: * @param tracks a list of tracks which should be used. * @param parent Parent widget. */ - DetailsDialog(QList<PlayListTrack *> tracks, QWidget *parent = nullptr); + explicit DetailsDialog(QList<PlayListTrack *> tracks, QWidget *parent = nullptr); /*! * Destructor. */ @@ -68,10 +68,10 @@ private: void printInfo(); QString formatRow(const QString &key, const QString &value) const; QString formatRow(const MetaDataItem &item) const; - MetaDataModel *m_metaDataModel; + MetaDataModel *m_metaDataModel = nullptr; QList<PlayListTrack *> m_tracks; TrackInfo m_info; - int m_page; + int m_page = 0; }; #endif |
