Add override keyword. Thanks @Floessie

This commit is contained in:
heckflosse
2018-11-22 16:19:16 +01:00
parent 6e4e07f8c0
commit 831e18ca45
135 changed files with 1250 additions and 1251 deletions

View File

@@ -71,7 +71,7 @@ public:
*/
CurveEditorGroup(Glib::ustring& curveDir, Glib::ustring groupLabel = "");
~CurveEditorGroup();
~CurveEditorGroup() override;
void newLine();
void curveListComplete();
void setBatchMode (bool batchMode);
@@ -97,8 +97,8 @@ protected:
void hideCurrentCurve ();
void updateGUI (CurveEditor* ce);
void curveResetPressed ();
void curveChanged ();
float blendPipetteValues(CurveEditor* ce, float chan1, float chan2, float chan3);
void curveChanged () override;
float blendPipetteValues(CurveEditor* ce, float chan1, float chan2, float chan3) override;
void setUnChanged (bool uc, CurveEditor* ce);
};