diff options
author | nyamatongwe <unknown> | 2012-04-14 17:37:33 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-04-14 17:37:33 +1000 |
commit | 117fe1a28085e14601d0fb345c0b3f07f57dfe34 (patch) | |
tree | 6a28d9f682b3e1c66258b7361e3fa6872905d69b /src/Editor.cxx | |
parent | 65e526dd2a5b1fce59513a7f2720ffbf91c2f310 (diff) | |
download | scintilla-mirror-117fe1a28085e14601d0fb345c0b3f07f57dfe34.tar.gz |
Remove unused WhiteSpace get/set. Feature #3517596.
From Marko Njezic.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 4249fb648..2d19decbf 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5643,14 +5643,6 @@ int Editor::KeyDown(int key, bool shift, bool ctrl, bool alt, bool *consumed) { return KeyDownWithModifiers(key, modifiers, consumed); } -void Editor::SetWhitespaceVisible(int view) { - vs.viewWhitespace = static_cast<WhiteSpaceVisibility>(view); -} - -int Editor::GetWhitespaceVisible() { - return vs.viewWhitespace; -} - void Editor::Indent(bool forwards) { for (size_t r=0; r<sel.Count(); r++) { int lineOfAnchor = pdoc->LineFromPosition(sel.Range(r).anchor.Position()); |