[effects/slidingpopups] Use override keyword
Test Plan: Compiles. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D14801
This commit is contained in:
parent
653cea5f49
commit
6e2292c81c
1 changed files with 6 additions and 6 deletions
|
@ -35,13 +35,13 @@ class SlidingPopupsEffect
|
|||
Q_PROPERTY(int slideOutDuration READ slideOutDuration)
|
||||
public:
|
||||
SlidingPopupsEffect();
|
||||
~SlidingPopupsEffect();
|
||||
~SlidingPopupsEffect() override;
|
||||
|
||||
virtual void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time);
|
||||
virtual void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data);
|
||||
virtual void postPaintWindow(EffectWindow* w);
|
||||
virtual void reconfigure(ReconfigureFlags flags);
|
||||
virtual bool isActive() const;
|
||||
void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time) override;
|
||||
void paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data) override;
|
||||
void postPaintWindow(EffectWindow* w) override;
|
||||
void reconfigure(ReconfigureFlags flags) override;
|
||||
bool isActive() const override;
|
||||
|
||||
int requestedEffectChainPosition() const override {
|
||||
return 40;
|
||||
|
|
Loading…
Reference in a new issue