-use paintBoxFrame in audioplayer, -fix compil with -Werror

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@992 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2011-01-01 19:55:58 +00:00
parent 39d855af8e
commit 72bfd0bdc2
2 changed files with 6 additions and 6 deletions

View File

@@ -1780,11 +1780,11 @@ bool CMovieBrowser::onButtonPressBrowserList(neutrino_msg_t msg)
{
m_pcBrowser->scrollLineDown(1);
}
else if (msg == g_settings.key_channelList_pageup)
else if (msg == (neutrino_msg_t)g_settings.key_channelList_pageup)
{
m_pcBrowser->scrollPageUp(1);
}
else if (msg == g_settings.key_channelList_pagedown)
else if (msg == (neutrino_msg_t)g_settings.key_channelList_pagedown)
{
m_pcBrowser->scrollPageDown(1);
}
@@ -1894,11 +1894,11 @@ bool CMovieBrowser::onButtonPressFilterList(neutrino_msg_t msg)
{
m_pcFilter->scrollLineDown(1);
}
else if (msg == g_settings.key_channelList_pageup)
else if (msg == (neutrino_msg_t)g_settings.key_channelList_pageup)
{
m_pcFilter->scrollPageUp(1);
}
else if (msg == g_settings.key_channelList_pagedown)
else if (msg == (neutrino_msg_t)g_settings.key_channelList_pagedown)
{
m_pcFilter->scrollPageDown(1);
}