diff options
author | Christian Kamm <christian.d.kamm@nokia.com> | 2010-08-13 11:48:29 +0200 |
---|---|---|
committer | Christian Kamm <christian.d.kamm@nokia.com> | 2010-08-13 12:51:22 +0200 |
commit | bbe64796a0f3a8c57718a5121fff85ba0b14c7a0 (patch) | |
tree | ac1dc93d0c94f78b8907b94ff880fa735c509b46 /src/plugins/cppeditor/cppquickfix.cpp | |
parent | 6c76866b12a7fcfd8375fcf47cc2ecea0768a124 (diff) | |
download | qt-creator-bbe64796a0f3a8c57718a5121fff85ba0b14c7a0.tar.gz |
QuickFix: Introduce CppRefactoringFile.
Diffstat (limited to 'src/plugins/cppeditor/cppquickfix.cpp')
-rw-r--r-- | src/plugins/cppeditor/cppquickfix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppquickfix.cpp b/src/plugins/cppeditor/cppquickfix.cpp index 1441f1c143..c85e776f3a 100644 --- a/src/plugins/cppeditor/cppquickfix.cpp +++ b/src/plugins/cppeditor/cppquickfix.cpp @@ -192,7 +192,7 @@ CppQuickFixOperation::~CppQuickFixOperation() void CppQuickFixOperation::perform() { CppRefactoringChanges refactoring(_state.document(), _state.snapshot()); - TextEditor::RefactoringFile current = refactoring.file(fileName()); + CppRefactoringFile current = refactoring.file(fileName()); performChanges(¤t, &refactoring); } |