From db896a6e9f62980b58bc6638416f6c2be68d109f Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 28 Sep 2021 13:17:38 -0600 Subject: [PATCH] add onSelectionChanged() to DummyUI --- projects/nat-archive-tool/src/test/DummyUI.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/nat-archive-tool/src/test/DummyUI.hx b/projects/nat-archive-tool/src/test/DummyUI.hx index ccfa4f27..d9c64cb8 100644 --- a/projects/nat-archive-tool/src/test/DummyUI.hx +++ b/projects/nat-archive-tool/src/test/DummyUI.hx @@ -37,4 +37,6 @@ class DummyUI implements ArchiveUI { public function displayMessage(message:String) {} public function reportError(error:String) {} + + public function onSelectionChanged(selectedEntries:Array, lastSelectedEntries:Array) {} }