summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylanddisplay_p.h
diff options
context:
space:
mode:
authorInho Lee <inho.lee@qt.io>2023-06-23 12:26:48 +0200
committerDavid Edmundson <davidedmundson@kde.org>2023-06-30 10:14:10 +0000
commit5a3d85a7a3e5e7cf56f263c718c9556378af2a21 (patch)
tree73fb74873df24f5b696d02634cd97b2ded239509 /src/client/qwaylanddisplay_p.h
parent27b5b2b67cdb1b8208370d203e0175b2935eaf51 (diff)
client: Fix variable names for QWaylandDisplay::GlobalHolder
After c4d0e10, wayland-text-input-v4-wip was broken. In addition, mTextInputManagerv2 will be changed to textInputManagerv2 as other protocols. Change-Id: I5476a1bba579ef1d915959b3c3881cf80a56587d Reviewed-by: David Edmundson <davidedmundson@kde.org>
Diffstat (limited to 'src/client/qwaylanddisplay_p.h')
-rw-r--r--src/client/qwaylanddisplay_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/qwaylanddisplay_p.h b/src/client/qwaylanddisplay_p.h
index 630c69464..951a64217 100644
--- a/src/client/qwaylanddisplay_p.h
+++ b/src/client/qwaylanddisplay_p.h
@@ -174,7 +174,7 @@ public:
}
QtWayland::zwp_text_input_manager_v2 *textInputManagerv2() const
{
- return mGlobals.mTextInputManagerv2.get();
+ return mGlobals.textInputManagerv2.get();
}
QtWayland::zwp_text_input_manager_v4 *textInputManagerv4() const
{
@@ -330,7 +330,7 @@ private:
#endif
std::unique_ptr<QtWayland::qt_text_input_method_manager_v1> textInputMethodManager;
std::unique_ptr<QtWayland::zwp_text_input_manager_v1> textInputManagerv1;
- std::unique_ptr<QtWayland::zwp_text_input_manager_v2> mTextInputManagerv2;
+ std::unique_ptr<QtWayland::zwp_text_input_manager_v2> textInputManagerv2;
std::unique_ptr<QtWayland::zwp_text_input_manager_v4> textInputManagerv4;
std::unique_ptr<QWaylandHardwareIntegration> hardwareIntegration;
std::unique_ptr<QWaylandXdgOutputManagerV1> xdgOutputManager;