| 189 | } |
| 190 | |
| 191 | void ScintillaBase::AutoCompleteDoubleClick(void *p) { |
| 192 | ScintillaBase *sci = reinterpret_cast<ScintillaBase *>(p); |
| 193 | sci->AutoCompleteCompleted(); |
| 194 | } |
| 195 | |
| 196 | void ScintillaBase::AutoCompleteInsert(Position startPos, int removeLen, const char *text, int textLen) { |
| 197 | UndoGroup ug(pdoc); |
nothing calls this directly
no test coverage detected