diff options
author | XhmikosR <xhmikosr@gmail.com> | 2014-09-30 11:50:24 +0300 |
---|---|---|
committer | XhmikosR <xhmikosr@gmail.com> | 2014-09-30 11:52:03 +0300 |
commit | e3126ffde6c6ee2926aba4705f5ee090ca7120d1 (patch) | |
tree | 2902cec91a579ee3ddf82a2c57aae934882515dd /scintilla/src/EditView.h | |
parent | 45af17c0808a3234a60182bbbdb7eabaf852bb22 (diff) | |
download | notepad2-mod-e3126ffde6c6ee2926aba4705f5ee090ca7120d1.zip notepad2-mod-e3126ffde6c6ee2926aba4705f5ee090ca7120d1.tar.gz notepad2-mod-e3126ffde6c6ee2926aba4705f5ee090ca7120d1.tar.bz2 |
Update Scintilla to v3.5.1.
Diffstat (limited to 'scintilla/src/EditView.h')
-rw-r--r-- | scintilla/src/EditView.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scintilla/src/EditView.h b/scintilla/src/EditView.h index 1845110..733612e 100644 --- a/scintilla/src/EditView.h +++ b/scintilla/src/EditView.h @@ -32,7 +32,7 @@ enum DrawPhase { drawLineTranslucent = 0x40, drawFoldLines = 0x80, drawCarets = 0x100, - drawAll = 0x1FF, + drawAll = 0x1FF }; bool ValidStyledText(const ViewStyle &vs, size_t styleOffset, const StyledText &st); @@ -86,7 +86,7 @@ public: bool LinesOverlap() const; void ClearAllTabstops(); - int NextTabstopPos(int line, int x, int tabWidth) const; + XYPOSITION NextTabstopPos(int line, XYPOSITION x, XYPOSITION tabWidth) const; bool ClearTabstops(int line); bool AddTabstop(int line, int x); int GetNextTabstop(int line, int x) const; |