aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/basetexteditor.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2014-09-23 10:10:09 +0200
committerEike Ziller <eike.ziller@digia.com>2014-09-23 10:10:09 +0200
commitd6c73653ed14fb1401acec6f9a9f86888a3238e4 (patch)
tree1ed25da29595ac43731f10af10575ee06ff86e7a /src/plugins/texteditor/basetexteditor.cpp
parent205de01abf5e0c0e356f48029632775a74a268dd (diff)
parentfaeac783f0f8de72771e8ff8d6bb7b908a00c277 (diff)
Merge remote-tracking branch 'origin/3.2'
Conflicts: qtcreator.pri qtcreator.qbs src/plugins/cpptools/cppmodelmanager.cpp src/plugins/texteditor/basetexteditor.cpp src/plugins/texteditor/basetexteditor.h Change-Id: I556a7661872b90b329a46694e335e18cddc28677
Diffstat (limited to 'src/plugins/texteditor/basetexteditor.cpp')
-rw-r--r--src/plugins/texteditor/basetexteditor.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp
index 1179561bce..f1098c6a23 100644
--- a/src/plugins/texteditor/basetexteditor.cpp
+++ b/src/plugins/texteditor/basetexteditor.cpp
@@ -131,6 +131,16 @@
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 {