Clang: Rename filePaths in ids

UnregisterProjectPartsForCodeCompletionCommand is using them as ids
and not as file paths.

Change-Id: I13a82c1995c60bdb60c72f4fd794aa354fcbb4ef
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Marco Bubke
2015-07-14 18:22:06 +02:00
parent 0f46ad4a55
commit 89bc1fc4c4
4 changed files with 14 additions and 14 deletions

View File

@@ -330,7 +330,7 @@ QString toString(const UnregisterProjectPartsForCodeCompletionCommand &command)
QTextStream ts(&out);
ts << "UnregisterProjectPartsForCodeCompletionCommand\n"
<< command.filePaths().join(Utf8String::fromUtf8(",")).toByteArray() << "\n";
<< command.projectPartIds().join(Utf8String::fromUtf8(",")).toByteArray() << "\n";
return out;
}