[effects/blur] Add missing override keywords
Test Plan: Compiles. Reviewers: #kwin, broulik Reviewed By: broulik Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D15712
This commit is contained in:
parent
646032a99d
commit
12bd16968f
1 changed files with 7 additions and 7 deletions
|
@ -50,18 +50,18 @@ class BlurEffect : public KWin::Effect
|
|||
|
||||
public:
|
||||
BlurEffect();
|
||||
~BlurEffect();
|
||||
~BlurEffect() override;
|
||||
|
||||
static bool supported();
|
||||
static bool enabledByDefault();
|
||||
|
||||
void reconfigure(ReconfigureFlags flags);
|
||||
void prePaintScreen(ScreenPrePaintData &data, int time);
|
||||
void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time);
|
||||
void drawWindow(EffectWindow *w, int mask, QRegion region, WindowPaintData &data);
|
||||
void paintEffectFrame(EffectFrame *frame, QRegion region, double opacity, double frameOpacity);
|
||||
void reconfigure(ReconfigureFlags flags) override;
|
||||
void prePaintScreen(ScreenPrePaintData &data, int time) override;
|
||||
void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time) override;
|
||||
void drawWindow(EffectWindow *w, int mask, QRegion region, WindowPaintData &data) override;
|
||||
void paintEffectFrame(EffectFrame *frame, QRegion region, double opacity, double frameOpacity) override;
|
||||
|
||||
virtual bool provides(Feature feature);
|
||||
bool provides(Feature feature) override;
|
||||
|
||||
int requestedEffectChainPosition() const override {
|
||||
return 75;
|
||||
|
|
Loading…
Reference in a new issue