diff options
author | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-07-30 16:29:02 +0200 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@digia.com> | 2014-08-20 10:26:47 +0200 |
commit | b8a6a4dd4e2a02d9afd54303550570f1fcbcb586 (patch) | |
tree | 51472b8c5c73e17900b78c65ce7286f9cd9b8eb5 /src/plugins/cpptools/cppsourceprocessor.cpp | |
parent | 077bbf6803d4f3d81622720c9452a7e1a00c81fb (diff) | |
download | qt-creator-b8a6a4dd4e2a02d9afd54303550570f1fcbcb586.tar.gz |
CppTools: Move WorkingCopy to new cppworkingcopy.{h,cpp}
Change-Id: I447acf28849bffb52c1e6b6eafdde221ec0b179e
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cppsourceprocessor.cpp')
-rw-r--r-- | src/plugins/cpptools/cppsourceprocessor.cpp | 6 |
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 ¯o) { 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) |