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

Method Start

scintilla/src/AutoComplete.cxx:60–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60void AutoComplete::Start(Window &parent, int ctrlID,
61 int position, Point location, int startLen_,
62 int lineHeight, bool unicodeMode, int technology) {
63 if (active) {
64 Cancel();
65 }
66 lb->Create(parent, ctrlID, location, lineHeight, unicodeMode, technology);
67 lb->Clear();
68 active = true;
69 startLen = startLen_;
70 posStart = position;
71}
72
73void AutoComplete::SetStopChars(const char *stopChars_) {
74 strncpy(stopChars, stopChars_, sizeof(stopChars));

Callers

nothing calls this directly

Calls 2

CreateMethod · 0.45
ClearMethod · 0.45

Tested by

no test coverage detected