From 46913151bb49fd41230a0699c75c84893b0344b4 Mon Sep 17 00:00:00 2001 From: fesseha-eve <88329315+fessehaeve@users.noreply.github.com> Date: Mon, 8 Aug 2022 22:18:06 +0200 Subject: [PATCH] fix missed update in https://github.com/project-chip/connectedhomeip/commit/b6859d795e044478ef5db275c45b82b45c7f05df (#21722) --- .../nrfconnect/main/include/BindingHandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/light-switch-app/nrfconnect/main/include/BindingHandler.h b/examples/light-switch-app/nrfconnect/main/include/BindingHandler.h index c3820e1ec33815..bfad3f8e6fae3c 100644 --- a/examples/light-switch-app/nrfconnect/main/include/BindingHandler.h +++ b/examples/light-switch-app/nrfconnect/main/include/BindingHandler.h @@ -51,9 +51,9 @@ class BindingHandler } private: - static void OnOffProcessCommand(chip::CommandId, const EmberBindingTableEntry &, chip::DeviceProxy *, void *); - static void LevelControlProcessCommand(chip::CommandId, const EmberBindingTableEntry &, chip::DeviceProxy *, void *); - static void LightSwitchChangedHandler(const EmberBindingTableEntry &, chip::DeviceProxy *, void *); + static void OnOffProcessCommand(chip::CommandId, const EmberBindingTableEntry &, chip::OperationalDeviceProxy *, void *); + static void LevelControlProcessCommand(chip::CommandId, const EmberBindingTableEntry &, chip::OperationalDeviceProxy *, void *); + static void LightSwitchChangedHandler(const EmberBindingTableEntry &, chip::OperationalDeviceProxy *, void *); static void LightSwitchContextReleaseHandler(void * context); static void InitInternal(intptr_t);