diff options
author | nyamatongwe <unknown> | 2009-08-03 01:52:17 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-08-03 01:52:17 +0000 |
commit | 6c9ecbe4ebb49deb3924e7535741d1f04f9f086b (patch) | |
tree | 25a3641a7aeeb43793a80b4ffe49dacf2ed81cfa | |
parent | 348977bf8c8f3336732ca93d646ef92bbc6a27b5 (diff) | |
download | scintilla-mirror-6c9ecbe4ebb49deb3924e7535741d1f04f9f086b.tar.gz |
Avoid warning.
-rw-r--r-- | src/Selection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Selection.cxx b/src/Selection.cxx index b44d4e96c..47d078675 100644 --- a/src/Selection.cxx +++ b/src/Selection.cxx @@ -156,7 +156,7 @@ void SelectionRange::MinimizeVirtualSpace() { } } -Selection::Selection() : mainRange(0), moveExtends(false), selType(selStream), tentativeMain(false) { +Selection::Selection() : mainRange(0), moveExtends(false), tentativeMain(false), selType(selStream) { AddSelection(SelectionPosition(0)); } |