Avoid warning about missing "override"

This commit is contained in:
David Capello 2019-05-02 16:27:34 -03:00
parent 73de6c8b1d
commit 86d38d81b0

View File

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