diff options
author | nyamatongwe <devnull@localhost> | 2003-09-20 04:19:54 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-20 04:19:54 +0000 |
commit | 7b7cff9b11bf31c1303dea46e7c96198f8f7b569 (patch) | |
tree | 07b1518b9622581f824d1bcaf0c90cbd32579aca | |
parent | 6b674227b9538e1391b1952e5fb28f355b013b3d (diff) | |
download | scintilla-mirror-7b7cff9b11bf31c1303dea46e7c96198f8f7b569.tar.gz |
Updated to match SetIdle return type.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 7c190f75a..33561fec6 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -670,7 +670,7 @@ void ScintillaGTK::SetTicking(bool on) { timer.ticksToWait = caret.period; } -void ScintillaGTK::SetIdle(bool on) { +bool ScintillaGTK::SetIdle(bool on) { if (on) { // Start idler, if it's not running. if (idler.state == false) { |