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
This commit is contained in:
focus
2010-03-18 17:19:06 +00:00
parent 6fe4fbf407
commit 791eba8069
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
}