diff options
author | nyamatongwe <devnull@localhost> | 2001-12-20 09:34:03 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-12-20 09:34:03 +0000 |
commit | 4209844b34933164f564c9f863a86d4dd357b5b6 (patch) | |
tree | 5b41321ae76866a05a7baa949cc2596d6e4b1596 /src/Document.h | |
parent | f424af8c571b9d3fb96503123d1375fb037af098 (diff) | |
download | scintilla-mirror-4209844b34933164f564c9f863a86d4dd357b5b6.tar.gz |
Unicode and multi-byte fixes to edge display and column number calculation.
Tab arrows are drawn within their areas when line height is large.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index d0e63fc5b..09814fec8 100644 --- a/src/Document.h +++ b/src/Document.h @@ -141,6 +141,7 @@ public: void SetLineIndentation(int line, int indent); int GetLineIndentPosition(int line); int GetColumn(int position); + int FindColumn(int line, int column); void Indent(bool forwards, int lineBottom, int lineTop); void ConvertLineEnds(int eolModeSet); void SetReadOnly(bool set) { cb.SetReadOnly(set); } |