[effects/screenshot] Use override keyword
Test Plan: Compiles. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: davidedmundson, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D16261
This commit is contained in:
parent
fe4d69b653
commit
d014f2ab74
1 changed files with 4 additions and 3 deletions
|
@ -42,10 +42,11 @@ public:
|
|||
INCLUDE_CURSOR = 1 << 1
|
||||
};
|
||||
ScreenShotEffect();
|
||||
virtual ~ScreenShotEffect();
|
||||
~ScreenShotEffect() override;
|
||||
|
||||
void paintScreen(int mask, QRegion region, ScreenPaintData &data) override;
|
||||
virtual void postPaintScreen();
|
||||
virtual bool isActive() const;
|
||||
void postPaintScreen() override;
|
||||
bool isActive() const override;
|
||||
|
||||
int requestedEffectChainPosition() const override {
|
||||
return 50;
|
||||
|
|
Loading…
Reference in a new issue