MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / onChangedCheckbox

Method onChangedCheckbox

Extension/ui/settings.ts:233–244  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

231 }
232
233 private onChangedCheckbox(id: string): void {
234 if (this.updating) {
235 return;
236 }
237
238 const el: HTMLInputElement = <HTMLInputElement>document.getElementById(id);
239 this.vsCodeApi.postMessage({
240 command: "change",
241 key: id,
242 value: el.checked
243 });
244 }
245
246 private onChanged(id: string): void {
247 if (this.updating) {

Callers

nothing calls this directly

Calls 1

postMessageMethod · 0.80

Tested by

no test coverage detected