webchannels/xmltv-setup: extend keyboard input

Origin commit data
------------------
Branch: ni/coolstream
Commit: 56023a5dcb
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-12 (Tue, 12 Oct 2021)

Origin message was:
------------------
- webchannels/xmltv-setup: extend keyboard input

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-10-12 23:04:56 +02:00
parent 8d92f8a734
commit 471c30c696
2 changed files with 4 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ int CWebChannelsSetup::exec(CMenuTarget *parent, const std::string &actionKey)
{ {
std::string entry = dirname; std::string entry = dirname;
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 50); CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 255);
e->exec(this, ""); e->exec(this, "");
delete e; delete e;
@@ -161,7 +161,7 @@ int CWebChannelsSetup::exec(CMenuTarget *parent, const std::string &actionKey)
tpl += "?mode=tv"; tpl += "?mode=tv";
std::string entry = tpl; std::string entry = tpl;
CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 52); CKeyboardInput *e = new CKeyboardInput(LOCALE_WEBCHANNELS_XML_ENTER, &entry, 255);
e->exec(this, ""); e->exec(this, "");
delete e; delete e;

View File

@@ -74,7 +74,7 @@ int CXMLTVSetup::exec(CMenuTarget *parent, const std::string &actionKey)
{ {
std::string entry = dirname; std::string entry = dirname;
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 50); CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 255);
e->exec(this, ""); e->exec(this, "");
delete e; delete e;
@@ -119,7 +119,7 @@ int CXMLTVSetup::exec(CMenuTarget *parent, const std::string &actionKey)
std::string tpl = "http://xxx.xxx.xxx.xxx/control/xmltv.xml"; std::string tpl = "http://xxx.xxx.xxx.xxx/control/xmltv.xml";
std::string entry = tpl; std::string entry = tpl;
CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 50); CKeyboardInput *e = new CKeyboardInput(LOCALE_XMLTV_XML_ENTER, &entry, 255);
e->exec(this, ""); e->exec(this, "");
delete e; delete e;