Changed: Use clear() instead of affectation

This commit is contained in:
kervala 2016-10-30 15:56:41 +01:00
parent 574405e5b5
commit b07db1a990
5 changed files with 5 additions and 5 deletions

View file

@ -1430,7 +1430,7 @@ namespace NLGUI
// Append to the last line // Append to the last line
_Lines.back()->addWord(ucCurrentWord, 0, wordFormat, _FontWidth, *TextContext); _Lines.back()->addWord(ucCurrentWord, 0, wordFormat, _FontWidth, *TextContext);
// reset the word // reset the word
ucCurrentWord = ucstring(""); ucCurrentWord.clear();
} }

View file

@ -1109,7 +1109,7 @@ void CI18N::_readTextFile(const string &filename,
temp.append(result.begin()+lastPos, result.end()); temp.append(result.begin()+lastPos, result.end());
result.swap(temp); result.swap(temp);
temp = ""; temp.clear();
// second loop with the '\n' // second loop with the '\n'
pos = 0; pos = 0;

View file

@ -38,7 +38,7 @@ void CTools::mkdir (const string &dirName)
} }
SetCurrentDirectory (newDir.c_str()); SetCurrentDirectory (newDir.c_str());
// Create upper levels // Create upper levels
newDir = ""; newDir.clear();
string::size_type pos = dirName.rfind('\\'); string::size_type pos = dirName.rfind('\\');
if (pos != string::npos) if (pos != string::npos)
{ {

View file

@ -86,7 +86,7 @@ sint main(sint argc, char **argv)
if (cmd != "") if (cmd != "")
{ {
commands.push_back(cmd); commands.push_back(cmd);
cmd = ""; cmd.clear();
} }
} }
else else

View file

@ -703,7 +703,7 @@ void cleanComment(const std::string & filename)
} }
} }
text = newText; text = newText;
newText = ucstring(""); newText.clear();
last = 0; last = 0;
while ( last != ucstring::npos) while ( last != ucstring::npos)
{ {