aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/basetexteditor.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-09-23 11:26:37 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-09-24 13:10:24 +0200
commit513e5401f1b946a119edc728eb474b7c3a6e1da0 (patch)
treebf655d4604f1df7a182279059c2540c882704e76 /src/plugins/texteditor/basetexteditor.cpp
parent52574da03198bc252a6b4e164839d1938dda3502 (diff)
BaseTextEditor: Remove duplicate static functions
Change-Id: Ic2a82e109418162ecb62a05ac63daade710d111f Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/texteditor/basetexteditor.cpp')
-rw-r--r--src/plugins/texteditor/basetexteditor.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp
index f1098c6a23..1179561bce 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 {