remove /NI tags from some picked lines

Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a91eb8109
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-10-03 (Wed, 03 Oct 2018)

Origin message was:
------------------
- remove /NI tags from some picked lines

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-10-03 18:01:22 +02:00
parent 2c1c85eb1a
commit 3898aaeb34
4 changed files with 5 additions and 5 deletions

View File

@@ -451,7 +451,7 @@ int CLuaInstMenu::MenuAddItem(lua_State *L)
mi = new CMenuOptionStringChooser(b->name.c_str(), &b->str_val, enabled, D->observ, directkey, icon, pulldown);
} else if (type == "stringinput") {
b->str_val = value;
std::string valid_chars = "abcdefghijklmnopqrstuvwxyz0123456789!\"§$%&/()=?-.@,_: "; //NI add '@,_:'
std::string valid_chars = "abcdefghijklmnopqrstuvwxyz0123456789!\"§$%&/()=?-.@,_: ";
tableLookup(L, "valid_chars", valid_chars);
lua_Integer sms = 0; tableLookup(L, "sms", sms);
lua_Integer size = 30; tableLookup(L, "size", size);

View File

@@ -631,7 +631,7 @@ void CStringInputSMS::initSMS(const char * const Valid_Chars)
last_digit = -1; // no key pressed yet
const char CharList[10][11] = { "0 -_/()<>=", // 10 characters
"1+.,:!?%\\'", //' for c't search ;)
"abc2@ä", //NI add '@'
"abc2@ä",
"def3",
"ghi4",
"jkl5",

View File

@@ -586,7 +586,7 @@ int CNeutrinoApp::loadSetup(const char * fname)
g_settings.radiotext_enable = configfile.getBool("radiotext_enable" , true); //NI
//audio
g_settings.audio_AnalogMode = configfile.getInt32( "audio_AnalogMode", 0 );
g_settings.audio_DolbyDigital = configfile.getBool("audio_DolbyDigital" , true); //NI
g_settings.audio_DolbyDigital = configfile.getBool("audio_DolbyDigital" , true);
g_settings.auto_lang = configfile.getInt32( "auto_lang", 1 ); //NI
g_settings.auto_subs = configfile.getInt32( "auto_subs", 0 );

View File

@@ -93,7 +93,7 @@ printf("url is %s\n", URL.c_str());
}
curl_easy_setopt(curl, CURLOPT_URL, URL.c_str() );
curl_easy_setopt(curl, CURLOPT_FILE, headerfile);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); //NI IMDb
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, show_progress);
curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, this);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
@@ -102,7 +102,7 @@ printf("url is %s\n", URL.c_str());
curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, connecttimeout);
curl_easy_setopt(curl, CURLOPT_FAILONERROR, true);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); //NI
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
#ifdef DEBUG
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
#endif