From 513e5401f1b946a119edc728eb474b7c3a6e1da0 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Tue, 23 Sep 2014 11:26:37 +0200 Subject: [PATCH] BaseTextEditor: Remove duplicate static functions Change-Id: Ic2a82e109418162ecb62a05ac63daade710d111f Reviewed-by: Eike Ziller --- src/plugins/texteditor/basetexteditor.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index f1098c6a232..1179561bce9 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -131,16 +131,6 @@ using namespace Core; using namespace Utils; -static QString QString_toUpper(const QString &str) -{ - return str.toUpper(); -} - -static QString QString_toLower(const QString &str) -{ - return str.toLower(); -} - namespace TextEditor { namespace Internal {