summaryrefslogtreecommitdiffstats
path: root/src/designer/src/lib/shared/textpropertyeditor_p.h
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk@kdab.com>2017-09-20 20:57:47 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-22 07:33:13 +0000
commitfdf1613fd9d059b5cbfddbf0dd9a76a8d2e23b26 (patch)
treec25f693010cc064c768c55313785d4209d09c769 /src/designer/src/lib/shared/textpropertyeditor_p.h
parentc2f48cd9e8eeafda8fb52c59840bccc3e9c60de5 (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I1b8b338a6bc2f3c87af62c20ff1428096b309628 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/designer/src/lib/shared/textpropertyeditor_p.h')
-rw-r--r--src/designer/src/lib/shared/textpropertyeditor_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/designer/src/lib/shared/textpropertyeditor_p.h b/src/designer/src/lib/shared/textpropertyeditor_p.h
index c81b77f10..eb9389253 100644
--- a/src/designer/src/lib/shared/textpropertyeditor_p.h
+++ b/src/designer/src/lib/shared/textpropertyeditor_p.h
@@ -87,8 +87,8 @@ namespace qdesigner_internal {
QString text() const;
- QSize sizeHint () const Q_DECL_OVERRIDE;
- QSize minimumSizeHint () const Q_DECL_OVERRIDE;
+ QSize sizeHint () const override;
+ QSize minimumSizeHint () const override;
void setAlignment(Qt::Alignment alignment);
@@ -117,7 +117,7 @@ namespace qdesigner_internal {
void clear();
protected:
- void resizeEvent(QResizeEvent * event ) Q_DECL_OVERRIDE;
+ void resizeEvent(QResizeEvent * event ) override;
private slots:
void slotTextChanged(const QString &text);