MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / Clear

Method Clear

scintilla/src/ExternalLexer.cxx:169–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169void LexerManager::Clear() {
170 if (NULL != first) {
171 LexerLibrary *cur = first;
172 LexerLibrary *next;
173 while (cur) {
174 next = cur->next;
175 delete cur;
176 cur = next;
177 }
178 first = NULL;
179 last = NULL;
180 }
181}
182
183//------------------------------------------
184//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected