Transponderscan finished successfully
-
- Interessierter
- Beiträge: 62
- Registriert: Freitag 26. Mai 2006, 00:34
Transponderscan finished successfully
I'm looking to change the default timeout for the "Transponderscan finished successfully" as it takes 4minutes to timeout, can anyone let me know where I can change it, I've looked in scan.cpp and settings.cpp but can't find it
-
- CDK-Experte
- Beiträge: 4335
- Registriert: Donnerstag 3. April 2008, 14:05
Re: Transponderscan finished successfully
In apps/tuxbox/neutrino/src/gui/scan.cpp add some parameters in line 209, like this:
old:
new:
where 10 is the timeout value, code is untested.
Have a look at apps/tuxbox/neutrino/src/gui/widget/messagebox.cpp
for details of the implementation of ShowLocalizedMessage()
old:
Code: Alles auswählen
ShowLocalizedMessage(LOCALE_MESSAGEBOX_INFO, success ? LOCALE_SCANTS_FINISHED : LOCALE_SCANTS_FAILED, CMessageBox::mbrBack, CMessageBox::mbBack, NEUTRINO_ICON_INFO);
Code: Alles auswählen
ShowLocalizedMessage(LOCALE_MESSAGEBOX_INFO, success ? LOCALE_SCANTS_FINISHED : LOCALE_SCANTS_FAILED, CMessageBox::mbrBack, CMessageBox::mbBack, NEUTRINO_ICON_INFO, 450, 10);
Have a look at apps/tuxbox/neutrino/src/gui/widget/messagebox.cpp
for details of the implementation of ShowLocalizedMessage()
-
- Interessierter
- Beiträge: 62
- Registriert: Freitag 26. Mai 2006, 00:34
Re: Transponderscan finished successfully
Thanks for that spot on, I've also taken on board the "apps/tuxbox/neutrino/src/gui/widget/messagebox.cpp
for details of the implementation of ShowLocalizedMessage()" suggestion again thankyou
for details of the implementation of ShowLocalizedMessage()" suggestion again thankyou