diff options
author | Neil <nyamatongwe@gmail.com> | 2014-07-18 14:30:42 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-07-18 14:30:42 +1000 |
commit | 13352fef35d261cc307c14a58ae46c02dbba2806 (patch) | |
tree | a119de590578613fc080f05417da8db81e5fee4d /src | |
parent | b730f1cb18db96629fbf4d6bd00dd9cb8f1d68ef (diff) | |
download | scintilla-mirror-13352fef35d261cc307c14a58ae46c02dbba2806.tar.gz |
Remove unused function.
Diffstat (limited to 'src')
-rw-r--r-- | src/EditView.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx index 32140e9b1..1514b963b 100644 --- a/src/EditView.cxx +++ b/src/EditView.cxx @@ -115,12 +115,6 @@ int WidestLineWidth(Surface *surface, const ViewStyle &vs, int styleOffset, cons return widthMax; } -void DrawTextInStyle(Surface *surface, PRectangle rcText, const Style &style, XYPOSITION ybase, const char *s, size_t length) { - FontAlias fontText = style.font; - surface->DrawTextNoClip(rcText, fontText, ybase, s, static_cast<int>(length), - style.fore, style.back); -} - void DrawTextNoClipPhase(Surface *surface, PRectangle rc, const Style &style, XYPOSITION ybase, const char *s, int len, DrawPhase phase) { FontAlias fontText = style.font; |