diff options
author | Neil <nyamatongwe@gmail.com> | 2021-07-31 08:49:25 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-07-31 08:49:25 +1000 |
commit | 4d1a31d6a74019c3d43de1c33e2be093ed6dfd11 (patch) | |
tree | d2b113b25d2cfcb751f4b5a961bb14a04261175f /call | |
parent | 297d17ace8501b23a32390163676c838dad71f9a (diff) | |
download | scintilla-mirror-4d1a31d6a74019c3d43de1c33e2be093ed6dfd11.tar.gz |
Implement StyleSetCheckMonospaced.
Diffstat (limited to 'call')
-rw-r--r-- | call/ScintillaCall.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/call/ScintillaCall.cxx b/call/ScintillaCall.cxx index 23de3f004..380d73494 100644 --- a/call/ScintillaCall.cxx +++ b/call/ScintillaCall.cxx @@ -624,6 +624,14 @@ void ScintillaCall::StyleSetHotSpot(int style, bool hotspot) { Call(Message::StyleSetHotSpot, style, hotspot); } +void ScintillaCall::StyleSetCheckMonospaced(int style, bool checkMonospaced) { + Call(Message::StyleSetCheckMonospaced, style, checkMonospaced); +} + +bool ScintillaCall::StyleGetCheckMonospaced(int style) { + return Call(Message::StyleGetCheckMonospaced, style); +} + void ScintillaCall::SetElementColour(Scintilla::Element element, ColourAlpha colourElement) { Call(Message::SetElementColour, static_cast<uintptr_t>(element), colourElement); } |