diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-06-22 10:36:28 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-06-22 12:13:30 +0200 |
commit | 27f6b2ceb5a3b946a7e6236470295c0ad4891cdf (patch) | |
tree | 59f123a66954f343d6deae2e4459f94a22cbc86a /src/plugins/cppeditor/cpprefactoringchanges.h | |
parent | eb749ec3a2aca7d3d6fc0ddb9106c6f50ed5aa5e (diff) | |
download | qt-creator-27f6b2ceb5a3b946a7e6236470295c0ad4891cdf.tar.gz |
Renamed CppRefactoringChanges::parsedDocumentForFile().
Diffstat (limited to 'src/plugins/cppeditor/cpprefactoringchanges.h')
-rw-r--r-- | src/plugins/cppeditor/cpprefactoringchanges.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cppeditor/cpprefactoringchanges.h b/src/plugins/cppeditor/cpprefactoringchanges.h index 3371ca42c7..9b684772f2 100644 --- a/src/plugins/cppeditor/cpprefactoringchanges.h +++ b/src/plugins/cppeditor/cpprefactoringchanges.h @@ -42,14 +42,14 @@ namespace CppEditor { class CPPEDITOR_EXPORT CppRefactoringChanges: public TextEditor::RefactoringChanges { public: - CppRefactoringChanges(const CPlusPlus::Snapshot &snapshot, CppTools::CppModelManagerInterface *modelManager); + CppRefactoringChanges(const CPlusPlus::Snapshot &snapshot); virtual QStringList apply(); const CPlusPlus::Snapshot &snapshot() const { return m_snapshot; } - CPlusPlus::Document::Ptr parsedDocumentForFile(const QString &fileName) const; + CPlusPlus::Document::Ptr document(const QString &fileName) const; private: CPlusPlus::Snapshot m_snapshot; |