Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
[libkwineffects] Use fully qualified type name for signal
Browse files Browse the repository at this point in the history
Qt Script Engine isn't particularly smart at resolving namespaces.

Differential Revision: https://phabricator.kde.org/D20733
  • Loading branch information
kbroulik committed Apr 23, 2019
1 parent bdbb471 commit 97c3cb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libkwineffects/kwineffects.h
Original file line number Diff line number Diff line change
Expand Up @@ -1750,23 +1750,23 @@ class KWINEFFECTS_EXPORT EffectsHandler : public QObject
* @param w The window whose the keep above state was changed.
* @since 5.15
**/
void windowKeepAboveChanged(EffectWindow *w);
void windowKeepAboveChanged(KWin::EffectWindow *w);

/**
* This signal is emitted when the keep below state of @p was changed.
*
* @param w The window whose the keep below state was changed.
* @since 5.15
**/
void windowKeepBelowChanged(EffectWindow *w);
void windowKeepBelowChanged(KWin::EffectWindow *w);

/**
* This signal is emitted when the full screen state of @p w was changed.
*
* @param w The window whose the full screen state was changed.
* @since 5.15
**/
void windowFullScreenChanged(EffectWindow *w);
void windowFullScreenChanged(KWin::EffectWindow *w);

protected:
QVector< EffectPair > loaded_effects;
Expand Down

0 comments on commit 97c3cb7

Please sign in to comment.