From 3df6b712e40acce3e00573d1ed22350a4f9879e2 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sun, 13 Nov 2011 22:51:43 +0200 Subject: VCS: Fix Apply/Revert for last line of chunk Task-number: QTCREATORBUG-6487 Change-Id: Id225856e267a4c8ac6dc15d5573175e7f0ce777f Reviewed-by: Tobias Hunger --- src/plugins/vcsbase/vcsbaseeditor.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/vcsbase/vcsbaseeditor.cpp b/src/plugins/vcsbase/vcsbaseeditor.cpp index 1459cc5093..de7cdc3ad7 100644 --- a/src/plugins/vcsbase/vcsbaseeditor.cpp +++ b/src/plugins/vcsbase/vcsbaseeditor.cpp @@ -796,8 +796,7 @@ DiffChunk VCSBaseEditorWidget::diffChunk(QTextCursor cursor) const DiffChunk rc; // Search back for start of chunk. QTextBlock block = cursor.block(); - QTextBlock next = block.next(); - if (next.isValid() && TextEditor::BaseTextDocumentLayout::foldingIndent(next) <= 1) + if (block.isValid() && TextEditor::BaseTextDocumentLayout::foldingIndent(block) <= 1) /* We are in a diff header, not in a chunk! DiffHighlighter sets the foldingIndent for us. */ return rc; -- cgit v1.2.1