Fix wrong consts in editcallbacks.h (#5239)

This commit is contained in:
Flössie
2019-03-25 18:57:30 +01:00
parent 6747c5c7df
commit 14020ed356
6 changed files with 90 additions and 72 deletions

View File

@@ -128,11 +128,11 @@ public:
sigc::signal<void> signal_curvepoint_release();
void switchOffEditMode () override;
const bool mouseOver(const int modifierKey) override;
bool button1Pressed(const int modifierKey) override;
bool mouseOver(int modifierKey) override;
bool button1Pressed(int modifierKey) override;
bool button1Released() override;
bool drag1(const int modifierKey) override;
const CursorShape getCursor(const int objectID) const override;
bool drag1(int modifierKey) override;
CursorShape getCursor(int objectID) const override;
};