Skip to content
GitLab
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
c859c621
Commit
c859c621
authored
Dec 12, 2014
by
Martin Flöser
Browse files
Normalize SIGNAL syntax
makes Krazy happy.
parent
66b5c438
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/wayland/autotests/client/test_datasource.cpp
View file @
c859c621
...
...
@@ -145,7 +145,7 @@ void TestDataSource::testOffer()
QCOMPARE
(
serverDataSource
->
mimeTypes
().
count
(),
0
);
QVERIFY
(
serverDataSource
->
parentResource
());
QSignalSpy
offeredSpy
(
serverDataSource
.
data
(),
SIGNAL
(
mimeTypeOffered
(
const
QString
&
)));
QSignalSpy
offeredSpy
(
serverDataSource
.
data
(),
SIGNAL
(
mimeTypeOffered
(
QString
)));
QVERIFY
(
offeredSpy
.
isValid
());
const
QString
plain
=
QStringLiteral
(
"text/plain"
);
...
...
src/wayland/autotests/client/test_wayland_seat.cpp
View file @
c859c621
...
...
@@ -469,7 +469,7 @@ void TestWaylandSeat::testPointerButton()
QScopedPointer
<
Pointer
>
p
(
m_seat
->
createPointer
());
QVERIFY
(
p
->
isValid
());
QSignalSpy
buttonChangedSpy
(
p
.
data
(),
SIGNAL
(
buttonStateChanged
(
quint32
,
quint32
,
quint32
,
KWayland
::
Client
::
Pointer
::
ButtonState
)));
QSignalSpy
buttonChangedSpy
(
p
.
data
(),
SIGNAL
(
buttonStateChanged
(
quint32
,
quint32
,
quint32
,
KWayland
::
Client
::
Pointer
::
ButtonState
)));
QVERIFY
(
buttonChangedSpy
.
isValid
());
wl_display_flush
(
m_connection
->
display
());
QCoreApplication
::
processEvents
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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