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
PowerDevil
Commits
e237ef48
Commit
e237ef48
authored
Mar 08, 2022
by
Laurent Montel
Browse files
Fix signature in qt6
parent
4f00bbf1
Pipeline
#146750
failed with stage
in 1 minute and 5 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
daemon/kwinkscreenhelpereffect.cpp
View file @
e237ef48
...
...
@@ -110,7 +110,11 @@ void KWinKScreenHelperEffect::setEffectProperty(long value)
#endif
}
bool
KWinKScreenHelperEffect
::
nativeEventFilter
(
const
QByteArray
&
eventType
,
void
*
message
,
long
int
*
result
)
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
bool
KWinKScreenHelperEffect
::
nativeEventFilter
(
const
QByteArray
&
eventType
,
void
*
message
,
long
*
result
)
#else
bool
KWinKScreenHelperEffect
::
nativeEventFilter
(
const
QByteArray
&
eventType
,
void
*
message
,
qintptr
*
result
)
#endif
{
Q_UNUSED
(
result
);
...
...
daemon/kwinkscreenhelpereffect.h
View file @
e237ef48
...
...
@@ -51,7 +51,11 @@ public:
bool
start
();
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
bool
nativeEventFilter
(
const
QByteArray
&
eventType
,
void
*
message
,
long
*
result
)
override
;
#else
bool
nativeEventFilter
(
const
QByteArray
&
eventType
,
void
*
message
,
qintptr
*
result
)
override
;
#endif
public
Q_SLOTS
:
void
stop
();
...
...
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