diff options
-rw-r--r-- | curses/ScintillaCurses.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/curses/ScintillaCurses.cxx b/curses/ScintillaCurses.cxx index dfa489513..5a0ac1648 100644 --- a/curses/ScintillaCurses.cxx +++ b/curses/ScintillaCurses.cxx @@ -1086,7 +1086,11 @@ public: clipboard.Copy(selectedText); } /** A ticking caret is not implemented. */ - void SetTicking(bool on) {} + bool FineTickerRunning(TickReason reason) { return false; } + /** A ticking caret is not implemented. */ + void FineTickerStart(TickReason reason, int millis, int tolerance) {} + /** A ticking caret is not implemented. */ + void FineTickerCancel(TickReason reason) {} /** * Sets whether or not the mouse is captured. * This is used by Scintilla to handle mouse clicks, drags, and releases. |