mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
neutrino pin check: add possibility to manipulate head title and hint text
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2032 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: f8b626250a
Author: Thilo Graf <dbt@novatux.de>
Date: 2012-01-01 (Sun, 01 Jan 2012)
Origin message was:
------------------
*neutrino pin check: add possibility to manipulate head title and hint text
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2032 e54a6e83-5905-42d5-8d5c-058d10e6a962
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1728,11 +1728,10 @@ int CMenuSeparator::paint(bool selected)
|
||||
bool CPINProtection::check()
|
||||
{
|
||||
char cPIN[5];
|
||||
neutrino_locale_t hint = NONEXISTANT_LOCALE;
|
||||
do
|
||||
{
|
||||
cPIN[0] = 0;
|
||||
CPINInput* PINInput = new CPINInput(LOCALE_PINPROTECTION_HEAD, cPIN, 4, hint);
|
||||
CPINInput* PINInput = new CPINInput(title, cPIN, 4, hint);
|
||||
PINInput->exec( getParent(), "");
|
||||
delete PINInput;
|
||||
hint = LOCALE_PINPROTECTION_WRONGCODE;
|
||||
@@ -1743,20 +1742,18 @@ bool CPINProtection::check()
|
||||
|
||||
bool CZapProtection::check()
|
||||
{
|
||||
|
||||
int res;
|
||||
char cPIN[5];
|
||||
neutrino_locale_t hint2 = NONEXISTANT_LOCALE;
|
||||
do
|
||||
{
|
||||
cPIN[0] = 0;
|
||||
|
||||
CPLPINInput* PINInput = new CPLPINInput(LOCALE_PARENTALLOCK_HEAD, cPIN, 4, hint2, fsk);
|
||||
CPLPINInput* PINInput = new CPLPINInput(title, cPIN, 4, hint, fsk);
|
||||
|
||||
res = PINInput->exec(getParent(), "");
|
||||
delete PINInput;
|
||||
|
||||
hint2 = LOCALE_PINPROTECTION_WRONGCODE;
|
||||
hint = LOCALE_PINPROTECTION_WRONGCODE;
|
||||
} while ( (strncmp(cPIN,validPIN,4) != 0) &&
|
||||
(cPIN[0] != 0) &&
|
||||
( res == menu_return::RETURN_REPAINT ) &&
|
||||
|
Reference in New Issue
Block a user