From b87099f201932e66b0d65c109f5ecdeddee299fb Mon Sep 17 00:00:00 2001 From: Michael Liebmann Date: Thu, 23 Feb 2017 08:54:01 +0100 Subject: [PATCH] CKeybindSetup: Fix changeNotify call for change repeat_block... Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/6b8a7eb5f32f7249a260ee368b8afe1727bd9c2d Author: Michael Liebmann Date: 2017-02-23 (Thu, 23 Feb 2017) --- src/gui/keybind_setup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/keybind_setup.cpp b/src/gui/keybind_setup.cpp index 1e835cc30..bd6af76e7 100644 --- a/src/gui/keybind_setup.cpp +++ b/src/gui/keybind_setup.cpp @@ -305,7 +305,7 @@ int CKeybindSetup::showKeySetup() #endif cc = new CMenuOptionNumberChooser(LOCALE_KEYBINDINGMENU_REPEATBLOCK, - &g_settings.repeat_blocker, true, 0, 999, NULL, + &g_settings.repeat_blocker, true, 0, 999, this, CRCInput::convertDigitToKey(shortcut++), NULL, 0, 0, LOCALE_OPTIONS_OFF); cc->setNumberFormat(ms_number_format); cc->setNumericInput(true); @@ -313,7 +313,7 @@ int CKeybindSetup::showKeySetup() keySettings->addItem(cc); cc = new CMenuOptionNumberChooser(LOCALE_KEYBINDINGMENU_REPEATBLOCKGENERIC, - &g_settings.repeat_genericblocker, true, 0, 999, NULL, + &g_settings.repeat_genericblocker, true, 0, 999, this, CRCInput::convertDigitToKey(shortcut++), NULL, 0, 0, LOCALE_OPTIONS_OFF); cc->setNumberFormat(ms_number_format); cc->setNumericInput(true);