aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-05-21 10:19:14 +1000
committernyamatongwe <devnull@localhost>2011-05-21 10:19:14 +1000
commit0865a5956ebacc1e816366330a4b311065ec068d (patch)
tree0bb6da58109e866caee2627d3986f7769d6949b4 /src/ScintillaBase.cxx
parent9ed1465a78cc69038d8a5655e6e1dba9c4258e5b (diff)
downloadscintilla-mirror-0865a5956ebacc1e816366330a4b311065ec068d.tar.gz
Code formatting normalised to standard.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx6
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);