stringinput test fix

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1379 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2011-04-06 21:28:03 +00:00
parent 8d44b7951c
commit 6033d3e635

View File

@@ -379,6 +379,7 @@ int CStringInput::exec( CMenuTarget* parent, const std::string & )
for(int count=strlen(value)-1;count<size-1;count++)
strcat(value, " ");
strncpy(oldval, value, size);
strncpy(dispval, value, size);
paint();
@@ -388,11 +389,11 @@ int CStringInput::exec( CMenuTarget* parent, const std::string & )
bool loop=true;
while (loop)
{
if ( strncmp(value, dispval, size) != 0)
{
CVFD::getInstance()->showMenuText(1, value, selected+1);
strncpy(dispval, value, size);
}
// if ( strncmp(value, dispval, size) != 0)
// {
// CVFD::getInstance()->showMenuText(1, value, selected+1);
// strncpy(dispval, value, size);
// }
g_RCInput->getMsgAbsoluteTimeout(&msg, &data, &timeoutEnd, true );