Changed: Minor changes
This commit is contained in:
parent
7c091f3a12
commit
71bcf1283e
1 changed files with 5 additions and 0 deletions
|
@ -24,21 +24,26 @@ void browseFAQ(NLMISC::CConfigFile &cf)
|
|||
std::string url;
|
||||
std::string languageCode = "wk";
|
||||
CConfigFile::CVar *languageCodeVarPtr = cf.getVarPtr("LanguageCode");
|
||||
|
||||
if (languageCodeVarPtr)
|
||||
{
|
||||
languageCode = languageCodeVarPtr->asString();
|
||||
}
|
||||
|
||||
CConfigFile::CVar *helpPages = cf.getVarPtr("HelpPages");
|
||||
|
||||
if (helpPages)
|
||||
{
|
||||
for (uint i = 0; i < helpPages->size(); ++i)
|
||||
{
|
||||
std::string entry = helpPages->asString(i);
|
||||
|
||||
if (entry.size() >= languageCode.size())
|
||||
{
|
||||
if (nlstricmp(entry.substr(0, languageCode.size()), languageCode) == 0)
|
||||
{
|
||||
std::string::size_type pos = entry.find("=");
|
||||
|
||||
if (pos != std::string::npos)
|
||||
{
|
||||
url = entry.substr(pos + 1);
|
||||
|
|
Loading…
Reference in a new issue