diff options
author | Neil <nyamatongwe@gmail.com> | 2021-04-01 13:41:21 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-04-01 13:41:21 +1100 |
commit | ae3d3fb6776d56ccc16eea5e9757d522258e4c2a (patch) | |
tree | 9eee66776fd12514fef442d4ba2be96613b68b94 /src/EditView.h | |
parent | da38c9eed4232ced1ab0ff9e7ccc69f0724fbeba (diff) | |
download | scintilla-mirror-ae3d3fb6776d56ccc16eea5e9757d522258e4c2a.tar.gz |
Changed parameters for DrawTabArrow and DrawTabArrowFn to allow additional
traits in the future.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/EditView.h b/src/EditView.h index f5df7143f..91a925f4a 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -41,7 +41,8 @@ void DrawTextNoClipPhase(Surface *surface, PRectangle rc, const Style &style, XY void DrawStyledText(Surface *surface, const ViewStyle &vs, int styleOffset, PRectangle rcText, const StyledText &st, size_t start, size_t length, DrawPhase phase); -typedef void (*DrawTabArrowFn)(Surface *surface, PRectangle rcTab, int ymid); +typedef void (*DrawTabArrowFn)(Surface *surface, PRectangle rcTab, int ymid, + const ViewStyle &vsDraw, Stroke stroke); class LineTabstops; |