aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2005-03-19 05:09:38 +0000
committernyamatongwe <unknown>2005-03-19 05:09:38 +0000
commit369c9b0e1d29f2a3bb1993aeba64fcef1d1a00ab (patch)
treefedbb49f8d7700318727a3939b83df96f6524f7d /src/Document.h
parentafcb87a616b5ec9a1598685bc0b57f8047bbba61 (diff)
downloadscintilla-mirror-369c9b0e1d29f2a3bb1993aeba64fcef1d1a00ab.tar.gz
Patch from Franck Marcia to treat lines containing only whitespace as
empty for the paragraph up and paragraph down actions.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h
index f2fcc7c69..1b59b1dab 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -229,6 +229,7 @@ public:
int WordPartLeft(int pos);
int WordPartRight(int pos);
int ExtendStyleRange(int pos, int delta, bool singleLine = false);
+ bool IsWhiteLine(int line);
int ParaUp(int pos);
int ParaDown(int pos);
int IndentSize() { return actualIndentInChars; }