Utils::FileName: Rename append to appendString()

The function's operation of simply appending the string as is would be
fine if FileNames were strings. But they aren't, so the function name
should be intentionally ugly to stand out.

Change-Id: I85e16844e2d69cacb6566c538182b84300c45161
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Daniel Teske
2013-10-30 16:24:58 +01:00
parent 8b64e8599e
commit 5fb2f2d652
6 changed files with 13 additions and 13 deletions

View File

@@ -288,7 +288,7 @@ Utils::FileName AndroidManager::libsPath(ProjectExplorer::Target *target)
Utils::FileName AndroidManager::stringsPath(ProjectExplorer::Target *target)
{
return dirPath(target).append(AndroidStringsFileName);
return dirPath(target).appendString(AndroidStringsFileName);
}
Utils::FileName AndroidManager::defaultPropertiesPath(ProjectExplorer::Target *target)