From b802d14af1fe9792d66c92861a0291f64d7eebb4 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Fri, 17 Nov 2023 08:55:42 -0600 Subject: [PATCH] =?UTF-8?q?feat(developer):=20ldml=20fix=20call=20to=20Ldm?= =?UTF-8?q?lKeyboardVisualKeyboardCompiler()=20=F0=9F=99=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix a call site For: #9438 --- .../src/kmc/src/commands/buildClasses/BuildLdmlKeyboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/src/kmc/src/commands/buildClasses/BuildLdmlKeyboard.ts b/developer/src/kmc/src/commands/buildClasses/BuildLdmlKeyboard.ts index e12295c7873..551ce66fa4b 100644 --- a/developer/src/kmc/src/commands/buildClasses/BuildLdmlKeyboard.ts +++ b/developer/src/kmc/src/commands/buildClasses/BuildLdmlKeyboard.ts @@ -82,7 +82,7 @@ async function buildLdmlKeyboardToMemory(inputFilename: string, callbacks: Compi const builder = new kmcLdml.KMXBuilder(kmx, options.saveDebug); const kmx_binary = builder.compile(); - const vkcompiler = new kmcLdml.LdmlKeyboardVisualKeyboardCompiler(); + const vkcompiler = new kmcLdml.LdmlKeyboardVisualKeyboardCompiler(callbacks); const vk = vkcompiler.compile(source); const writer = new KvkFileWriter(); const kvk_binary = writer.write(vk);