From b5fb6015dc88217967cc7efb5dc00049bca175a2 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 20 Aug 2017 11:30:57 +0200 Subject: [PATCH] CKeyChooserItemNoKey: fix type cast Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/78638536787f6f69c01979d47f1ac5d5cc20cdb5 Author: Stefan Seyfried Date: 2017-08-20 (Sun, 20 Aug 2017) --- src/gui/widget/keychooser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widget/keychooser.h b/src/gui/widget/keychooser.h index 8c89140c7..b2cdbeb64 100644 --- a/src/gui/widget/keychooser.h +++ b/src/gui/widget/keychooser.h @@ -96,7 +96,7 @@ class CKeyChooserItemNoKey : public CMenuTarget int exec(CMenuTarget* /*parent*/, const std::string & /*actionKey*/) { - *key=(int)CRCInput::RC_nokey; + *key=(unsigned int)CRCInput::RC_nokey; return menu_return::RETURN_REPAINT; }