aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/codeassist/runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/texteditor/codeassist/runner.h')
-rw-r--r--src/plugins/texteditor/codeassist/runner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/texteditor/codeassist/runner.h b/src/plugins/texteditor/codeassist/runner.h
index 48ede43753..b607d69bb1 100644
--- a/src/plugins/texteditor/codeassist/runner.h
+++ b/src/plugins/texteditor/codeassist/runner.h
@@ -43,13 +43,13 @@ class ProcessorRunner : public QThread
public:
ProcessorRunner();
- virtual ~ProcessorRunner();
+ ~ProcessorRunner() override;
void setProcessor(IAssistProcessor *processor); // Takes ownership of the processor.
void setAssistInterface(AssistInterface *interface);
void setDiscardProposal(bool discard);
- virtual void run();
+ void run() override;
IAssistProposal *proposal() const;