client: Remove unused member variable in TextInputV3

Pick-to: 6.7
Change-Id: I717f16d6ff055b2c0221bfd9cae1bdc9fa7f6513
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
This commit is contained in:
David Edmundson 2024-01-10 10:59:10 +00:00
parent 21f03c33b0
commit d01b735d50
2 changed files with 1 additions and 3 deletions

View File

@ -22,9 +22,8 @@ namespace QtWaylandClient {
QWaylandTextInputv3::QWaylandTextInputv3(QWaylandDisplay *display,
struct ::zwp_text_input_v3 *text_input)
: QtWayland::zwp_text_input_v3(text_input)
, m_display(display)
{
Q_UNUSED(display)
}
QWaylandTextInputv3::~QWaylandTextInputv3()

View File

@ -63,7 +63,6 @@ protected:
void zwp_text_input_v3_done(uint32_t serial) override;
private:
QWaylandDisplay *m_display;
QWaylandInputMethodEventBuilder m_builder;
::wl_surface *m_surface = nullptr; // ### Here for debugging purposes