CppTools: Fix build with namespaced Qt.

Change-Id: Idec32131c20b91c3d08ac16fbcc1c14ee5ede450
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Christian Kandeler
2013-03-25 13:36:55 +01:00
parent 9b688d0ac7
commit 423ff9b37a
2 changed files with 5 additions and 5 deletions

View File

@@ -78,9 +78,7 @@ void ProjectFileAdder::addMapping(const char *mimeName, ProjectFile::Kind kind)
m_mapping.append(Pair(mimeType, kind));
}
} // namespace CPlusPlus
QDebug operator <<(QDebug stream, const CPlusPlus::ProjectFile &cxxFile)
QDebug operator<<(QDebug stream, const CPlusPlus::ProjectFile &cxxFile)
{
const char *kind;
switch (cxxFile.kind) {
@@ -99,3 +97,5 @@ QDebug operator <<(QDebug stream, const CPlusPlus::ProjectFile &cxxFile)
stream << cxxFile.path << QLatin1String(", ") << kind;
return stream;
}
} // namespace CPlusPlus