Clang: Fix command name for QDebug

Change-Id: If29a41aaefeda725965a85f0c7ff47124e2a23c7
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2015-07-17 10:55:39 +02:00
parent 4dbc0bdbf7
commit 09ce021627

View File

@@ -76,7 +76,7 @@ bool operator<(const RegisterProjectPartsForCodeCompletionCommand &first, const
QDebug operator<<(QDebug debug, const RegisterProjectPartsForCodeCompletionCommand &command)
{
debug.nospace() << "RegisterProjectPartsForCodeCompletion(";
debug.nospace() << "RegisterProjectPartsForCodeCompletionCommand(";
for (const ProjectPartContainer &projectContainer : command.projectContainers())
debug.nospace() << projectContainer<< ", ";
@@ -88,7 +88,7 @@ QDebug operator<<(QDebug debug, const RegisterProjectPartsForCodeCompletionComma
void PrintTo(const RegisterProjectPartsForCodeCompletionCommand &command, ::std::ostream* os)
{
*os << "RegisterProjectPartsForCodeCompletion(";
*os << "RegisterProjectPartsForCodeCompletionCommand(";
for (const ProjectPartContainer &projectContainer : command.projectContainers())
PrintTo(projectContainer, os);