aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-04-01 13:41:21 +1100
committerNeil <nyamatongwe@gmail.com>2021-04-01 13:41:21 +1100
commitae3d3fb6776d56ccc16eea5e9757d522258e4c2a (patch)
tree9eee66776fd12514fef442d4ba2be96613b68b94 /src/EditView.h
parentda38c9eed4232ced1ab0ff9e7ccc69f0724fbeba (diff)
downloadscintilla-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.h3
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;