mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
gui/upnpbrowser.cpp: revert keys handling, pass not-handled to CNeutrinoApp
Origin commit data
------------------
Branch: ni/coolstream
Commit: 5b3cea3ff6
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-09-16 (Mon, 16 Sep 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -527,12 +527,16 @@ void CUpnpBrowserGui::selectDevice()
|
|||||||
loop=false;
|
loop=false;
|
||||||
g_RCInput->postMsg(msg, data);
|
g_RCInput->postMsg(msg, data);
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
else if (msg == NeutrinoMessages::EVT_TIMER)
|
else if (msg == NeutrinoMessages::EVT_TIMER)
|
||||||
{
|
{
|
||||||
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
||||||
}
|
}
|
||||||
else if (msg > CRCInput::RC_MaxRC)
|
else if (msg > CRCInput::RC_MaxRC)
|
||||||
|
#endif
|
||||||
|
else
|
||||||
{
|
{
|
||||||
|
printf("msg: %x\n", (int) msg);
|
||||||
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
||||||
loop = false;
|
loop = false;
|
||||||
}
|
}
|
||||||
@@ -834,11 +838,14 @@ bool CUpnpBrowserGui::selectItem(std::string id)
|
|||||||
loop = false;
|
loop = false;
|
||||||
g_RCInput->postMsg(msg, data);
|
g_RCInput->postMsg(msg, data);
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
else if (msg == NeutrinoMessages::EVT_TIMER)
|
else if (msg == NeutrinoMessages::EVT_TIMER)
|
||||||
{
|
{
|
||||||
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
||||||
}
|
}
|
||||||
else if (msg > CRCInput::RC_MaxRC)
|
else if (msg > CRCInput::RC_MaxRC)
|
||||||
|
#endif
|
||||||
|
else
|
||||||
{
|
{
|
||||||
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
||||||
loop = false;
|
loop = false;
|
||||||
|
Reference in New Issue
Block a user