Skip to content

Commit

Permalink
;lipstick] Use correctly typed arguments in window signals. Contribut…
Browse files Browse the repository at this point in the history
…es to JB#46609
  • Loading branch information
adenexter committed Dec 2, 2019
1 parent df532ed commit 3321ee5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/compositor/lipstickcompositor.h
Expand Up @@ -125,11 +125,11 @@ class LIPSTICK_EXPORT LipstickCompositor : public QQuickWindow, public QWaylandQ
void timerEvent(QTimerEvent *e) Q_DECL_OVERRIDE;

signals:
void windowAdded(QObject *window);
void windowRemoved(QObject *window);
void windowRaised(QObject *window);
void windowLowered(QObject *window);
void windowHidden(QObject *window);
void windowAdded(LipstickCompositorWindow *window);
void windowRemoved(LipstickCompositorWindow *window);
void windowRaised(LipstickCompositorWindow *window);
void windowLowered(LipstickCompositorWindow *window);
void windowHidden(LipstickCompositorWindow *window);

void windowCountChanged();
void ghostWindowCountChanged();
Expand Down

0 comments on commit 3321ee5

Please sign in to comment.