Clang: Fix function name in qWarning()

Change-Id: I64618eb06c8834fba0ed186ce0413d6ffc283a85
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2015-07-28 14:26:41 +02:00
parent 399c9d0f9b
commit b554fe4726

View File

@@ -120,7 +120,7 @@ void ClangIpcServer::completeCode(const ClangBackEnd::CompleteCodeCommand &comma
} catch (const ProjectPartDoNotExistException &exception) {
client()->projectPartsDoNotExist(ProjectPartsDoNotExistCommand(exception.projectPartIds()));
} catch (const std::exception &exception) {
qWarning() << "Error in ClangIpcServer::unregisterProjectPartsForCodeCompletion:" << exception.what();
qWarning() << "Error in ClangIpcServer::completeCode:" << exception.what();
}
}