diff options
author | Andrew Knight <andrew.knight@digia.com> | 2013-12-03 18:32:41 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-12-16 11:36:08 +0100 |
commit | f1b4102efa8c8feeee99f218ed652219f73a1158 (patch) | |
tree | a043b2aa0605b327c94c9c2e5e7b93af73a8ca81 /src/plugins | |
parent | 23232ad806b08451e4a128ca9fb8f908cd27845c (diff) | |
download | qtwayland-f1b4102efa8c8feeee99f218ed652219f73a1158.tar.gz |
InputMethod extension fixups
Add a missing slot decorator and a missing return statement.
Change-Id: Iad7944b1b9d35ce45818d3be418dc897d7deed69
Reviewed-by: Jan Arne Petersen <jan.petersen@kdab.com>
Reviewed-by: Laszlo Agocs <laszlo.agocs@digia.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/platforms/wayland_common/qwaylandinputcontext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/platforms/wayland_common/qwaylandinputcontext.cpp b/src/plugins/platforms/wayland_common/qwaylandinputcontext.cpp index de70d010..f50581b3 100644 --- a/src/plugins/platforms/wayland_common/qwaylandinputcontext.cpp +++ b/src/plugins/platforms/wayland_common/qwaylandinputcontext.cpp @@ -253,6 +253,7 @@ bool QWaylandInputContext::ensureTextInput() return false; mTextInput.reset(new QWaylandTextInput(mDisplay->textInputManager()->create_text_input())); + return true; } QT_END_NAMESPACE |