Mercurial > hg > svgui
comparison widgets/MIDIFileImportDialog.h @ 1406:a18e78b9c78b fix-static-analysis
Use override throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 13:52:27 +0000 |
parents | 2c59b0cd176b |
children | 05d614f6e46d |
comparison
equal
deleted
inserted
replaced
1405:4c359c2b220c | 1406:a18e78b9c78b |
---|---|
25 Q_OBJECT | 25 Q_OBJECT |
26 | 26 |
27 public: | 27 public: |
28 MIDIFileImportDialog(QWidget *parent = 0); | 28 MIDIFileImportDialog(QWidget *parent = 0); |
29 | 29 |
30 virtual TrackPreference getTrackImportPreference | 30 TrackPreference getTrackImportPreference |
31 (QStringList trackNames, bool haveSomePercussion, | 31 (QStringList trackNames, bool haveSomePercussion, |
32 QString &singleTrack) const; | 32 QString &singleTrack) const override; |
33 | 33 |
34 virtual void showError(QString error); | 34 void showError(QString error) override; |
35 | 35 |
36 protected: | 36 protected: |
37 QWidget *m_parent; | 37 QWidget *m_parent; |
38 }; | 38 }; |
39 | 39 |