Skip to content

Commit

Permalink
Keywords fix
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-twardowski committed May 8, 2020
1 parent 039f2a6 commit 0a52ea4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/GigPlayer/GigPlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ class GigInstrument : public Instrument


void setParameter( const QString & _param, const QString & _value );
virtual bool presetChangeSupported() override;
virtual void changePreset(int bank, unsigned int preset) override;
bool presetChangeSupported() override;
void changePreset(int bank, unsigned int preset) override;


public slots:
Expand Down
4 changes: 2 additions & 2 deletions plugins/sf2_player/sf2_player.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ class sf2Instrument : public Instrument

void setParameter( const QString & _param, const QString & _value );

virtual bool presetChangeSupported();
virtual void changePreset(int bank, unsigned int preset);
bool presetChangeSupported() override;
void changePreset(int bank, unsigned int preset) override;

public slots:
void openFile( const QString & _sf2File, bool updateTrackName = true );
Expand Down

0 comments on commit 0a52ea4

Please sign in to comment.