diff options
author | Zufu Liu <unknown> | 2021-07-03 14:47:54 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-07-03 14:47:54 +1000 |
commit | 67d41ce2237e39ea3be7932659fe04f263c82b24 (patch) | |
tree | 5883fd367b299b34c0c65f0e4cba80353af28996 /src/EditView.h | |
parent | a2d23bd463e65f532301b682b64cd02b8a57716b (diff) | |
download | scintilla-mirror-67d41ce2237e39ea3be7932659fe04f263c82b24.tar.gz |
Feature [feature-requests:#1408] Avoid sprintf for hexadecimal character blobs.
Diffstat (limited to 'src/EditView.h')
-rw-r--r-- | src/EditView.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/EditView.h b/src/EditView.h index 148d6e52d..bac59ed31 100644 --- a/src/EditView.h +++ b/src/EditView.h @@ -40,6 +40,7 @@ void DrawTextNoClipPhase(Surface *surface, PRectangle rc, const Style &style, XY std::string_view text, DrawPhase phase); void DrawStyledText(Surface *surface, const ViewStyle &vs, int styleOffset, PRectangle rcText, const StyledText &st, size_t start, size_t length, DrawPhase phase); +void Hexits(char *hexits, int ch) noexcept; typedef void (*DrawTabArrowFn)(Surface *surface, PRectangle rcTab, int ymid, const ViewStyle &vsDraw, Stroke stroke); |