aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/codeassist/functionhintproposalwidget.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-06-03 15:31:41 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-06-04 12:25:42 +0000
commit314d4ce41f11109b88cc630f91b98c3ed4615104 (patch)
treeba0424fe3937aac75abd68842720e9706bdcd131 /src/plugins/texteditor/codeassist/functionhintproposalwidget.h
parentb5641c7d436e98f3edff2fccb52dbfe416d4c9ed (diff)
texteditor: s/Q_DECL_OVERRIDE/override/g
Change-Id: I8ce0a93f25fe483d07d48a6525748fe40d647feb Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src/plugins/texteditor/codeassist/functionhintproposalwidget.h')
-rw-r--r--src/plugins/texteditor/codeassist/functionhintproposalwidget.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/texteditor/codeassist/functionhintproposalwidget.h b/src/plugins/texteditor/codeassist/functionhintproposalwidget.h
index ee18674a26..3b4b68d141 100644
--- a/src/plugins/texteditor/codeassist/functionhintproposalwidget.h
+++ b/src/plugins/texteditor/codeassist/functionhintproposalwidget.h
@@ -46,20 +46,20 @@ public:
FunctionHintProposalWidget();
~FunctionHintProposalWidget();
- void setAssistant(CodeAssistant *assistant) Q_DECL_OVERRIDE;
- void setReason(AssistReason reason) Q_DECL_OVERRIDE;
- void setKind(AssistKind kind) Q_DECL_OVERRIDE;
- void setUnderlyingWidget(const QWidget *underlyingWidget) Q_DECL_OVERRIDE;
- void setModel(IAssistProposalModel *model) Q_DECL_OVERRIDE;
- void setDisplayRect(const QRect &rect) Q_DECL_OVERRIDE;
- void setIsSynchronized(bool isSync) Q_DECL_OVERRIDE;
+ void setAssistant(CodeAssistant *assistant) override;
+ void setReason(AssistReason reason) override;
+ void setKind(AssistKind kind) override;
+ void setUnderlyingWidget(const QWidget *underlyingWidget) override;
+ void setModel(IAssistProposalModel *model) override;
+ void setDisplayRect(const QRect &rect) override;
+ void setIsSynchronized(bool isSync) override;
- void showProposal(const QString &prefix) Q_DECL_OVERRIDE;
- void updateProposal(const QString &prefix) Q_DECL_OVERRIDE;
- void closeProposal() Q_DECL_OVERRIDE;
+ void showProposal(const QString &prefix) override;
+ void updateProposal(const QString &prefix) override;
+ void closeProposal() override;
protected:
- bool eventFilter(QObject *o, QEvent *e) Q_DECL_OVERRIDE;
+ bool eventFilter(QObject *o, QEvent *e) override;
private slots:
void nextPage();