MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / toggleHighlight

Method toggleHighlight

gui/qt/basiccodeviewerwindow.cpp:37–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37void BasicEditor::toggleHighlight()
38{
39 if (highlighter == nullptr) {
40 highlighter = new BasicHighlighter(document());
41 } else {
42 delete highlighter;
43 highlighter = nullptr;
44 }
45}
46
47int BasicEditor::lineNumberAreaWidth()
48{

Callers 2

BasicCodeViewerWindowMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected