mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
fix stringinput
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1380 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Commit: adbd8e1605
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-04-07 (Thu, 07 Apr 2011)
This commit is contained in:
@@ -379,7 +379,6 @@ 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();
|
||||
|
||||
@@ -389,11 +388,12 @@ 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)
|
||||
{
|
||||
std::string tmp = value;
|
||||
CVFD::getInstance()->showMenuText(1,tmp.c_str() , selected+1);
|
||||
strncpy(dispval, value, size);
|
||||
}
|
||||
|
||||
g_RCInput->getMsgAbsoluteTimeout(&msg, &data, &timeoutEnd, true );
|
||||
|
||||
|
Reference in New Issue
Block a user