summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/vnc/qvncscreen.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2017-01-06 13:40:04 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2017-01-09 10:21:44 +0000
commit7991a70d2801066dc0d68854a7dcdb36fd602048 (patch)
tree690e530b0f8cf9ad87000667b5cbb3541d0e9887 /src/plugins/platforms/vnc/qvncscreen.h
parent6b7e6332484df1d16ad539631685687f76f86159 (diff)
vnc: Replace Q_DECL_OVERRIDE by override
Change-Id: Id06dfc73d1ad41822b2f07b585f32e9e6e5d08f2 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/plugins/platforms/vnc/qvncscreen.h')
-rw-r--r--src/plugins/platforms/vnc/qvncscreen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/platforms/vnc/qvncscreen.h b/src/plugins/platforms/vnc/qvncscreen.h
index 81c7da2e1e..c0a22ed140 100644
--- a/src/plugins/platforms/vnc/qvncscreen.h
+++ b/src/plugins/platforms/vnc/qvncscreen.h
@@ -61,16 +61,16 @@ public:
bool initialize() override;
- QPixmap grabWindow(WId wid, int x, int y, int width, int height) const Q_DECL_OVERRIDE;
+ QPixmap grabWindow(WId wid, int x, int y, int width, int height) const override;
- QRegion doRedraw() Q_DECL_OVERRIDE;
+ QRegion doRedraw() override;
QImage *image() { return &mScreenImage; }
void enableClientCursor(QVncClient *client);
void disableClientCursor(QVncClient *client);
- QPlatformCursor *cursor() const Q_DECL_OVERRIDE;
+ QPlatformCursor *cursor() const override;
- Flags flags() const Q_DECL_OVERRIDE;
+ Flags flags() const override;
void clearDirty() { dirtyRegion = QRegion(); }