diff options
author | nyamatongwe <devnull@localhost> | 2011-05-21 10:19:14 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-05-21 10:19:14 +1000 |
commit | 0865a5956ebacc1e816366330a4b311065ec068d (patch) | |
tree | 0bb6da58109e866caee2627d3986f7769d6949b4 /src/ScintillaBase.cxx | |
parent | 9ed1465a78cc69038d8a5655e6e1dba9c4258e5b (diff) | |
download | scintilla-mirror-0865a5956ebacc1e816366330a4b311065ec068d.tar.gz |
Code formatting normalised to standard.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 0e6ecc8b7..3de4a4583 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -135,16 +135,16 @@ int ScintillaBase::KeyCommand(unsigned int iMessage) { AutoCompleteMove(1); return 0; case SCI_LINEUP: - AutoCompleteMove( -1); + AutoCompleteMove(-1); return 0; case SCI_PAGEDOWN: AutoCompleteMove(5); return 0; case SCI_PAGEUP: - AutoCompleteMove( -5); + AutoCompleteMove(-5); return 0; case SCI_VCHOME: - AutoCompleteMove( -5000); + AutoCompleteMove(-5000); return 0; case SCI_LINEEND: AutoCompleteMove(5000); |