diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-06-22 09:27:34 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-06-22 12:13:30 +0200 |
commit | 91eff02007551bd4ee8a3285b34199a104d6d088 (patch) | |
tree | 440606c18f242483ee6e322404581dcde76b039e /src/plugins/cppeditor/cppquickfix.h | |
parent | a19f802529fd7a748df1fc1e29fd89015151167d (diff) | |
download | qt-creator-91eff02007551bd4ee8a3285b34199a104d6d088.tar.gz |
Moved CppRefactoringChanges.
Diffstat (limited to 'src/plugins/cppeditor/cppquickfix.h')
-rw-r--r-- | src/plugins/cppeditor/cppquickfix.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/cppquickfix.h b/src/plugins/cppeditor/cppquickfix.h index 28e11b5451..961769cace 100644 --- a/src/plugins/cppeditor/cppquickfix.h +++ b/src/plugins/cppeditor/cppquickfix.h @@ -43,10 +43,11 @@ namespace CppTools { class CppModelManagerInterface; - class CppRefactoringChanges; } // end of namespace CppTools namespace CppEditor { +class CppRefactoringChanges; + namespace Internal { class CppQuickFixOperation: public TextEditor::QuickFixOperation @@ -68,7 +69,7 @@ protected: QString fileName() const; virtual void apply(); - virtual CppTools::CppRefactoringChanges *cppRefactoringChanges() const; + virtual CppRefactoringChanges *cppRefactoringChanges() const; virtual TextEditor::RefactoringChanges *refactoringChanges() const; const CPlusPlus::Token &tokenAt(unsigned index) const; @@ -101,7 +102,7 @@ protected: QString textOf(const CPlusPlus::AST *ast) const; private: - CppTools::CppRefactoringChanges *_refactoringChanges; + CppRefactoringChanges *_refactoringChanges; CPlusPlus::Document::Ptr _document; CPlusPlus::AST *_topLevelNode; }; |