| 368 | } |
| 369 | |
| 370 | int ScintillaBase::AutoCompleteGetCurrent() { |
| 371 | if (!ac.Active()) |
| 372 | return -1; |
| 373 | return ac.GetSelection(); |
| 374 | } |
| 375 | |
| 376 | int ScintillaBase::AutoCompleteGetCurrentText(char *buffer) { |
| 377 | if (ac.Active()) { |
nothing calls this directly
no test coverage detected