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
KWin
Commits
9854f403
Commit
9854f403
authored
Oct 27, 2020
by
Aleix Pol Gonzalez
🐧
Committed by
Nate Graham
Nov 28, 2020
Browse files
xwl: Include errors and warnings
(cherry picked from commit
439dcc4b
)
parent
a3f5d431
Changes
2
Hide whitespace changes
Inline
Side-by-side
xwl/clipboard.cpp
View file @
9854f403
...
...
@@ -145,6 +145,8 @@ void Clipboard::doHandleXfixesNotify(xcb_xfixes_selection_notify_event_t *event)
if
(
X11Source
*
source
=
x11Source
())
{
source
->
getTargets
();
}
else
{
qCWarning
(
KWIN_XWL
)
<<
"Could not create a source from"
<<
event
<<
Qt
::
hex
<<
(
event
?
event
->
owner
:
-
1
);
}
}
...
...
@@ -152,6 +154,7 @@ void Clipboard::x11OffersChanged(const QStringList &added, const QStringList &re
{
X11Source
*
source
=
x11Source
();
if
(
!
source
)
{
qCWarning
(
KWIN_XWL
)
<<
"offers changed when not having an X11Source!?"
;
return
;
}
...
...
xwl/selection_source.cpp
View file @
9854f403
...
...
@@ -197,9 +197,11 @@ void X11Source::handleTargets()
);
auto
*
reply
=
xcb_get_property_reply
(
xcbConn
,
cookie
,
nullptr
);
if
(
!
reply
)
{
qCDebug
(
KWIN_XWL
)
<<
"Failed to get selection property"
;
return
;
}
if
(
reply
->
type
!=
XCB_ATOM_ATOM
)
{
qCDebug
(
KWIN_XWL
)
<<
"Wrong reply type"
;
free
(
reply
);
return
;
}
...
...
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