diff options
author | mitchell <unknown> | 2018-03-14 13:51:45 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-03-14 13:51:45 -0400 |
commit | ca1549e20291650b25ccb3607e907b646f04c876 (patch) | |
tree | 6829eb3e0974a12bfbebe536af21814496aab64e | |
parent | 9348bda1636d43a997f879d0b071661e7b3081f1 (diff) | |
download | scintilla-mirror-ca1549e20291650b25ccb3607e907b646f04c876.tar.gz |
Updated curses platform to add FineTicker* stubs.
-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. |