Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
KWayland Server
Commits
3d3b8b6b
Commit
3d3b8b6b
authored
Apr 22, 2021
by
Aleix Pol Gonzalez
🐧
Browse files
Make sure we don't leak interfaces
Properly set the parent
parent
e4a6721a
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/server/textinput_v2_interface.cpp
View file @
3d3b8b6b
...
...
@@ -362,7 +362,7 @@ QList<TextInputV2InterfacePrivate::Resource *> TextInputV2InterfacePrivate::text
}
TextInputV2Interface
::
TextInputV2Interface
(
SeatInterface
*
seat
)
:
QObject
()
:
QObject
(
seat
)
,
d
(
new
TextInputV2InterfacePrivate
(
seat
,
this
))
{
}
...
...
src/server/textinput_v3_interface.cpp
View file @
3d3b8b6b
...
...
@@ -337,7 +337,7 @@ void TextInputV3InterfacePrivate::defaultPending()
}
TextInputV3Interface
::
TextInputV3Interface
(
SeatInterface
*
seat
)
:
QObject
()
:
QObject
(
seat
)
,
d
(
new
TextInputV3InterfacePrivate
(
seat
,
this
))
{
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment