From 4e5e579da4b825ef9849520c7c725aa937e2a767 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 5 Jun 2017 14:38:56 +0200 Subject: [PATCH] Fix some more search & replace bugs Signed-off-by: Gergely Nagy --- examples/TapDance/TapDance.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/TapDance/TapDance.ino b/examples/TapDance/TapDance.ino index 978e976d..81402627 100644 --- a/examples/TapDance/TapDance.ino +++ b/examples/TapDance/TapDance.ino @@ -40,13 +40,13 @@ const Key keymaps[][ROWS][COLS] PROGMEM = { }; static void tapDanceEsc(uint8_t tap_dance_index, uint8_t tap_count, kaleidoscope::TapDance::ActionType tap_dance_action) { - tap_dance_actionKeys(tap_count, tap_dance_action, Key_Escape, Key_Tab); + tapDanceActionKeys(tap_count, tap_dance_action, Key_Escape, Key_Tab); } -void tap_dance_action(uint8_t tap_dance_index, byte row, byte col, uint8_t tap_count, kaleidoscope::TapDance::ActionType tap_dance_action) { +void tapDanceAction(uint8_t tap_dance_index, byte row, byte col, uint8_t tap_count, kaleidoscope::TapDance::ActionType tap_dance_action) { switch (tap_dance_index) { case 0: - return tap_dance_actionKeys(tap_count, tap_dance_action, Key_Tab, Key_Escape); + return tapDanceActionKeys(tap_count, tap_dance_action, Key_Tab, Key_Escape); case 1: return tapDanceEsc(tap_dance_index, tap_count, tap_dance_action); }