summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cppsourceprocessor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools/cppsourceprocessor.cpp')
-rw-r--r--src/plugins/cpptools/cppsourceprocessor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cppsourceprocessor.cpp b/src/plugins/cpptools/cppsourceprocessor.cpp
index 33b2a0896e..b20ae68d77 100644
--- a/src/plugins/cpptools/cppsourceprocessor.cpp
+++ b/src/plugins/cpptools/cppsourceprocessor.cpp
@@ -22,7 +22,7 @@
* correctly.
*
* \sa CPlusPlus::Document
- * \sa CppTools::CppModelManagerInterface::WorkingCopy
+ * \sa CppTools::WorkingCopy
*/
using namespace CPlusPlus;
@@ -69,7 +69,7 @@ inline Message messageNoFileContents(Document::Ptr &document, const QString &fil
return Message(Message::Warning, document->fileName(), line, /*column =*/ 0, text);
}
-inline const Macro revision(const CppModelManagerInterface::WorkingCopy &workingCopy,
+inline const Macro revision(const WorkingCopy &workingCopy,
const Macro &macro)
{
Macro newMacro(macro);
@@ -96,7 +96,7 @@ CppSourceProcessor::~CppSourceProcessor()
void CppSourceProcessor::setRevision(unsigned revision)
{ m_revision = revision; }
-void CppSourceProcessor::setWorkingCopy(const CppModelManagerInterface::WorkingCopy &workingCopy)
+void CppSourceProcessor::setWorkingCopy(const WorkingCopy &workingCopy)
{ m_workingCopy = workingCopy; }
void CppSourceProcessor::setHeaderPaths(const ProjectPart::HeaderPaths &headerPaths)