Skip to content

Commit

Permalink
Making clearer the hierarchy. (#4967)
Browse files Browse the repository at this point in the history
Add `override` keyword
  • Loading branch information
devnexen authored and JohannesLorenz committed May 27, 2019
1 parent fb1b18e commit 46c74d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/TempoSyncKnobModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ class LMMS_EXPORT TempoSyncKnobModel : public FloatModel
const float _max, const float _step,
const float _scale, Model * _parent,
const QString & _display_name = QString() );
virtual ~TempoSyncKnobModel();
virtual ~TempoSyncKnobModel() override;

void saveSettings( QDomDocument & _doc, QDomElement & _this, const QString& name );
void loadSettings( const QDomElement & _this, const QString& name );
void saveSettings( QDomDocument & _doc, QDomElement & _this, const QString& name ) override;
void loadSettings( const QDomElement & _this, const QString& name ) override;

TempoSyncMode syncMode() const
{
Expand Down

0 comments on commit 46c74d0

Please sign in to comment.