gui/upnpbrowser.cpp: revert keys handling, pass not-handled to CNeutrinoApp

This commit is contained in:
[CST] Focus
2013-09-16 14:38:06 +04:00
parent a992f9695a
commit 5b3cea3ff6

View File

@@ -527,12 +527,16 @@ void CUpnpBrowserGui::selectDevice()
loop=false;
g_RCInput->postMsg(msg, data);
}
#if 0
else if (msg == NeutrinoMessages::EVT_TIMER)
{
CNeutrinoApp::getInstance()->handleMsg(msg, data);
}
else if (msg > CRCInput::RC_MaxRC)
#endif
else
{
printf("msg: %x\n", (int) msg);
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
loop = false;
}
@@ -834,11 +838,14 @@ bool CUpnpBrowserGui::selectItem(std::string id)
loop = false;
g_RCInput->postMsg(msg, data);
}
#if 0
else if (msg == NeutrinoMessages::EVT_TIMER)
{
CNeutrinoApp::getInstance()->handleMsg(msg, data);
}
else if (msg > CRCInput::RC_MaxRC)
#endif
else
{
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
loop = false;