From 4f1e892feb8676048ddea3aa7dc1755ca400660c Mon Sep 17 00:00:00 2001 From: Lorenz Haas <lykurg@gmail.com> Date: Thu, 4 Apr 2013 20:44:39 +0200 Subject: [PATCH] Fix insert position for refactoring getter and setter functions If the cpp file had unsaved changes (newlines at top or in the middle) the inserted getter and setter functions were misplaced. Change-Id: I15129df2c0bdb91e6fb5e22213e7b4f52733c6ae Reviewed-by: hjk <hjk121@nokiamail.com> --- src/plugins/cppeditor/cppinsertdecldef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cppeditor/cppinsertdecldef.cpp b/src/plugins/cppeditor/cppinsertdecldef.cpp index 636a388b6fd..b9b14e3b1d8 100644 --- a/src/plugins/cppeditor/cppinsertdecldef.cpp +++ b/src/plugins/cppeditor/cppinsertdecldef.cpp @@ -567,7 +567,7 @@ public: CppRefactoringChanges implRefactoring(snapshot()); CppRefactoringFilePtr implFile = implRefactoring.file(implFileName); ChangeSet implChanges; - const int implInsertPos = QFileInfo(implFileName).size(); + const int implInsertPos = implFile->document()->characterCount() - 1; implChanges.insert(implInsertPos, implementation); implFile->setChangeSet(implChanges); implFile->appendIndentRange( -- GitLab