summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylanddisplay.cpp
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@digia.com>2013-11-22 16:54:54 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-27 21:19:19 +0100
commit645dc7c8528ef05e8f1cb040a5350c631eaa0162 (patch)
treed97864c03b713097288c516e08526fcaa3ef33ec /src/client/qwaylanddisplay.cpp
parentcc6a016fc3a4d05adeec5c8945beab50ffe07525 (diff)
Fix compiler warnings
Change-Id: I499c50c901bff1c496b05b628f8155376b5af267 Reviewed-by: Andy Nichols <andy.nichols@digia.com>
Diffstat (limited to 'src/client/qwaylanddisplay.cpp')
-rw-r--r--src/client/qwaylanddisplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/qwaylanddisplay.cpp b/src/client/qwaylanddisplay.cpp
index 436f58bb9..e6981ed52 100644
--- a/src/client/qwaylanddisplay.cpp
+++ b/src/client/qwaylanddisplay.cpp
@@ -230,7 +230,7 @@ void QWaylandDisplay::registry_global(uint32_t id, const QString &interface, uin
mTouchExtension = new QWaylandTouchExtension(this, id);
} else if (interface == QStringLiteral("qt_key_extension")) {
mQtKeyExtension = new QWaylandQtKeyExtension(this, id);
- } else if (interface == "wl_text_input_manager") {
+ } else if (interface == QStringLiteral("wl_text_input_manager")) {
mTextInputManager = new QtWayland::wl_text_input_manager(registry, id);
}