mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 00:11:14 +02:00
-fix warnings
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@303 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -30,7 +30,7 @@ enum stream2file_error_msg_t
|
||||
STREAM2FILE_INVALID_PID = -3,
|
||||
STREAM2FILE_PES_FILTER_FAILURE = -4,
|
||||
STREAM2FILE_DVR_OPEN_FAILURE = -5,
|
||||
STREAM2FILE_RECORDING_THREADS_FAILED = -6,
|
||||
STREAM2FILE_RECORDING_THREADS_FAILED = -6
|
||||
};
|
||||
|
||||
enum stream2file_status_t
|
||||
|
@@ -789,7 +789,7 @@ int EpgPlus::exec (CChannelList * pchannelList, int selectedChannelIndex, CBouqu
|
||||
|
||||
this->paint ();
|
||||
|
||||
unsigned long long timeoutEnd = CRCInput::calcTimeoutEnd (g_settings.timing[SNeutrinoSettings::TIMING_CHANLIST]);
|
||||
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd (g_settings.timing[SNeutrinoSettings::TIMING_CHANLIST]);
|
||||
bool loop = true;
|
||||
while (loop) {
|
||||
g_RCInput->getMsgAbsoluteTimeout (&msg, &data, &timeoutEnd);
|
||||
|
@@ -95,7 +95,7 @@ int CImageInfo::exec(CMenuTarget* parent, const std::string &)
|
||||
while (1)
|
||||
{
|
||||
neutrino_msg_data_t data;
|
||||
unsigned long long timeoutEnd = CRCInput::calcTimeoutEnd_MS(100);
|
||||
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd_MS(100);
|
||||
g_RCInput->getMsgAbsoluteTimeout( &msg, &data, &timeoutEnd );
|
||||
|
||||
if (msg <= CRCInput::RC_MaxRC)
|
||||
|
@@ -47,7 +47,7 @@ class CPluginList : public CMenuTarget
|
||||
enum result_
|
||||
{
|
||||
close = 0,
|
||||
resume = 1,
|
||||
resume = 1
|
||||
} result;
|
||||
|
||||
private:
|
||||
|
@@ -66,7 +66,7 @@ void CRCLock::lockBox()
|
||||
neutrino_msg_t msg;
|
||||
neutrino_msg_data_t data;
|
||||
|
||||
unsigned long long timeoutEnd;
|
||||
uint64_t timeoutEnd;
|
||||
|
||||
// -- Loop until release key pressed
|
||||
// -- Key sequence: <RED> <DBOX> within 5 secs
|
||||
|
@@ -303,7 +303,7 @@ CVideoSettings::CVideoSettings() : CMenuWidget(LOCALE_VIDEOMENU_HEAD, NEUTRINO_I
|
||||
changeNotify(LOCALE_VIDEOMENU_SCART, NULL);
|
||||
changeNotify(LOCALE_VIDEOMENU_CINCH, NULL);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
void CVideoSettings::nextMode(void)
|
||||
{
|
||||
@@ -427,12 +427,12 @@ bool CVideoSettings::changeNotify(const neutrino_locale_t OptionName, void *)
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
}
|
||||
|
||||
void CVideoSettings::paint()
|
||||
{
|
||||
CMenuWidget::paint();
|
||||
};
|
||||
}
|
||||
|
||||
#ifdef TEST_MENU
|
||||
class CTestMenu : public CMenuTarget
|
||||
|
Reference in New Issue
Block a user