diff options
author | nyamatongwe <devnull@localhost> | 2001-07-17 01:21:37 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-07-17 01:21:37 +0000 |
commit | 828a9b0127163b684a5f30638690655d3fb64df1 (patch) | |
tree | b7b12d914b559da213d17487b78be16cbccaa896 /src/Editor.cxx | |
parent | 3e363d2d882b7682799972049f57715b775bc409 (diff) | |
download | scintilla-mirror-828a9b0127163b684a5f30638690655d3fb64df1.tar.gz |
Changed caret to start in off and inactive state.
Removed extraneous tests in EnsureUndoRoom.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index f2bac993b..bf53de224 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -30,7 +30,7 @@ #include "Editor.h" Caret::Caret() : -active(true), on(true), period(500) {} +active(false), on(false), period(500) {} Timer::Timer() : ticking(false), ticksToWait(0), tickerID(0) {} |