mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Wrong indent
--HG-- branch : develop
This commit is contained in:
parent
e7d1710747
commit
bd8cdb46e0
2 changed files with 17 additions and 8 deletions
|
@ -228,15 +228,21 @@ namespace NLGUI
|
||||||
|
|
||||||
// path already has leading slash
|
// path already has leading slash
|
||||||
if (!path.empty())
|
if (!path.empty())
|
||||||
|
{
|
||||||
result += path;
|
result += path;
|
||||||
|
}
|
||||||
|
|
||||||
if (!query.empty())
|
if (!query.empty())
|
||||||
if (query.find_first_of("?") != 0)
|
{
|
||||||
result += "?";
|
if (query.find_first_of("?") != 0) result += "?";
|
||||||
|
|
||||||
result += query;
|
result += query;
|
||||||
|
}
|
||||||
|
|
||||||
if (!hash.empty())
|
if (!hash.empty())
|
||||||
|
{
|
||||||
result += "#" + hash;
|
result += "#" + hash;
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3195,11 +3195,14 @@ class CHandlerGameConfigMode : public IActionHandler
|
||||||
bool bFound = false;
|
bool bFound = false;
|
||||||
string tmp = toString(VideoModes[i].Frequency);
|
string tmp = toString(VideoModes[i].Frequency);
|
||||||
for (j = 0; j < (sint)stringFreqList.size(); ++j)
|
for (j = 0; j < (sint)stringFreqList.size(); ++j)
|
||||||
|
{
|
||||||
if (stringFreqList[j] == tmp)
|
if (stringFreqList[j] == tmp)
|
||||||
{
|
{
|
||||||
bFound = true;
|
bFound = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!bFound)
|
if (!bFound)
|
||||||
{
|
{
|
||||||
stringFreqList.push_back(tmp);
|
stringFreqList.push_back(tmp);
|
||||||
|
|
Loading…
Reference in a new issue