From 4d1a31d6a74019c3d43de1c33e2be093ed6dfd11 Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 31 Jul 2021 08:49:25 +1000 Subject: Implement StyleSetCheckMonospaced. --- call/ScintillaCall.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'call') 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(element), colourElement); } -- cgit v1.2.3