Avoid warning about missing "override"

master
David Capello 2019-05-02 16:27:34 -03:00
parent 73de6c8b1d
commit 86d38d81b0
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ namespace app {
virtual void getInvalidDecoratoredRegion(Editor* editor, gfx::Region& region) override;
// Disable Shift+click to draw straight lines with the Pencil tool
virtual bool canCheckStartDrawingStraightLine() { return false; }
bool canCheckStartDrawingStraightLine() override { return false; }
private:
typedef std::vector<Ruler> Rulers;