Fix minor warning.

This commit is contained in:
Stephen Anthony 2020-12-20 11:14:29 -03:30
parent c081481825
commit 085d718c5e
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class EditableWidget : public Widget, public CommandSender
void handleMouseDown(int x, int y, MouseButton b, int clickCount) override;
void handleMouseUp(int x, int y, MouseButton b, int clickCount) override;
void handleMouseMoved(int x, int y) override;
void handleCommand(CommandSender* sender, int cmd, int data, int id);
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
virtual int caretOfs() const { return _editScrollOffset; }
int toCaretPos(int x) const;