From 52dc1c9ec97fe9a2667cc10e421700840496b8b5 Mon Sep 17 00:00:00 2001 From: Daniel Teske Date: Fri, 11 Jan 2013 17:52:35 +0100 Subject: [PATCH] Compile fix Change-Id: I2812a7e59ee20511b9804337d836e1707894a7be Reviewed-by: Daniel Teske --- src/plugins/texteditor/basetexteditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index febc14d1846..66c11d96375 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -6572,7 +6572,7 @@ int BaseTextEditorWidget::rowCount() const @see uppercaseSelection, lowercaseSelection */ -void BaseTextEditorWidget::transformSelection(Internal::TransformationMethod method) +void BaseTextEditorWidget::transformSelection(TransformationMethod method) { if (hasBlockSelection()) { transformBlockSelection(method); @@ -6605,7 +6605,7 @@ void BaseTextEditorWidget::transformSelection(Internal::TransformationMethod met setTextCursor(cursor); } -void BaseTextEditorWidget::transformBlockSelection(Internal::TransformationMethod method) +void BaseTextEditorWidget::transformBlockSelection(TransformationMethod method) { QTextCursor cursor = textCursor(); int minPos = cursor.anchor();