aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/tasklist
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2016-04-13 15:52:14 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2016-04-15 09:40:53 +0000
commit95ac4edfd4276c73f0304651fe032d511a5a7c16 (patch)
treec1ebcef6ecff1292f9fa670111c39043b0f67837 /src/plugins/tasklist
parent79da8a45860940f98333517c60ac388cc0b1af3a (diff)
Projectexplorer: Modernize codebase
Change-Id: I4793b58aa77bcd46af99f8b843c0f7439cdc9269 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com> Reviewed-by: Vikas Pachdha <vikas.pachdha@theqtcompany.com>
Diffstat (limited to 'src/plugins/tasklist')
-rw-r--r--src/plugins/tasklist/stopmonitoringhandler.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/tasklist/stopmonitoringhandler.h b/src/plugins/tasklist/stopmonitoringhandler.h
index b257c330c0..ebf8a4e8e7 100644
--- a/src/plugins/tasklist/stopmonitoringhandler.h
+++ b/src/plugins/tasklist/stopmonitoringhandler.h
@@ -33,11 +33,9 @@ namespace Internal {
class StopMonitoringHandler : public ProjectExplorer::ITaskHandler
{
public:
- StopMonitoringHandler() {}
-
- bool canHandle(const ProjectExplorer::Task &) const;
- void handle(const ProjectExplorer::Task &);
- QAction *createAction(QObject *parent) const;
+ bool canHandle(const ProjectExplorer::Task &) const override;
+ void handle(const ProjectExplorer::Task &) override;
+ QAction *createAction(QObject *parent) const override;
};
} // namespace Internal