Show tuner locked or not using green or red radar, experimental

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@503 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 791eba8069
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2010-03-18 (Thu, 18 Mar 2010)



------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2010-03-18 17:19:06 +00:00
parent f5d0691b0d
commit f6b0012d6e
7 changed files with 23 additions and 10 deletions

View File

@@ -914,14 +914,15 @@ void CInfoViewer::showFailure ()
void CInfoViewer::showMotorMoving (int duration)
{
char text[256];
#if 0
char buffer[10];
sprintf (buffer, "%d", duration);
strcpy (text, g_Locale->getText (LOCALE_INFOVIEWER_MOTOR_MOVING));
strcat (text, " (");
strcat (text, buffer);
strcat (text, " s)");
#endif
sprintf(text, "%s (%ds)", g_Locale->getText (LOCALE_INFOVIEWER_MOTOR_MOVING), duration);
ShowHintUTF (LOCALE_MESSAGEBOX_INFO, text, g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getRenderWidth (text, true) + 10, duration); // UTF-8
}