diff options
author | Marco Bubke <marco.bubke@theqtcompany.com> | 2016-01-13 14:12:15 +0100 |
---|---|---|
committer | Marco Bubke <marco.bubke@theqtcompany.com> | 2016-01-13 14:46:56 +0000 |
commit | 2b4cadf1fe138bfa23ca42ffe63c9da5d4d8827c (patch) | |
tree | 71cd2a79e861052b619aaf13b3f4f9a6c28f51a9 /src/plugins/cpptools/cppcodemodelinspectordumper.cpp | |
parent | 42d570a3fe89da30ebbc280c79f5565471786db6 (diff) | |
download | qt-creator-2b4cadf1fe138bfa23ca42ffe63c9da5d4d8827c.tar.gz |
CppTools: Move ProjectPart in its own header file
Also extracting inline HeaderPath class and change projects list in vector
because the size is larger than a pointer.
Change-Id: I885fdff3fe9bccc877634d1615249755f5b674fd
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cppcodemodelinspectordumper.cpp')
-rw-r--r-- | src/plugins/cpptools/cppcodemodelinspectordumper.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/cpptools/cppcodemodelinspectordumper.cpp b/src/plugins/cpptools/cppcodemodelinspectordumper.cpp index 1285c40da3..2282907120 100644 --- a/src/plugins/cpptools/cppcodemodelinspectordumper.cpp +++ b/src/plugins/cpptools/cppcodemodelinspectordumper.cpp @@ -143,7 +143,7 @@ QString Utils::toString(ProjectPart::QtVersion qtVersion) return QString(); } -QString Utils::toString(const QList<ProjectFile> &projectFiles) +QString Utils::toString(const QVector<ProjectFile> &projectFiles) { QStringList filesList; foreach (const ProjectFile &projectFile, projectFiles) @@ -411,10 +411,10 @@ QString Utils::pathListToString(const QStringList &pathList) return result.join(QLatin1Char('\n')); } -QString Utils::pathListToString(const ProjectPart::HeaderPaths &pathList) +QString Utils::pathListToString(const ProjectPartHeaderPaths &pathList) { QStringList result; - foreach (const ProjectPart::HeaderPath &path, pathList) { + foreach (const ProjectPartHeaderPath &path, pathList) { result << QString(QLatin1String("%1 (%2 path)")).arg( QDir::toNativeSeparators(path.path), path.isFrameworkPath() ? QLatin1String("framework") : QLatin1String("include") @@ -523,9 +523,9 @@ void Dumper::dumpProjectInfos( const QList<ProjectInfo> &projectInfos) if (!part->headerPaths.isEmpty()) { m_out << i3 << "Header Paths:{{{4\n"; - foreach (const ProjectPart::HeaderPath &headerPath, part->headerPaths) + foreach (const ProjectPartHeaderPath &headerPath, part->headerPaths) m_out << i4 << headerPath.path - << (headerPath.type == ProjectPart::HeaderPath::IncludePath + << (headerPath.type == ProjectPartHeaderPath::IncludePath ? "(include path)" : "(framework path)") << "\n"; @@ -590,7 +590,7 @@ void Dumper::dumpWorkingCopy(const WorkingCopy &workingCopy) } } -void Dumper::dumpMergedEntities(const ProjectPart::HeaderPaths &mergedHeaderPaths, +void Dumper::dumpMergedEntities(const ProjectPartHeaderPaths &mergedHeaderPaths, const QByteArray &mergedMacros) { m_out << "Merged Entities{{{1\n"; @@ -598,7 +598,7 @@ void Dumper::dumpMergedEntities(const ProjectPart::HeaderPaths &mergedHeaderPath const QByteArray i3 = indent(3); m_out << i2 << "Merged Header Paths{{{2\n"; - foreach (const ProjectPart::HeaderPath &hp, mergedHeaderPaths) + foreach (const ProjectPartHeaderPath &hp, mergedHeaderPaths) m_out << i3 << hp.path << (hp.isFrameworkPath() ? " (framework path)" : " (include path)") << "\n"; |