aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/kitmanager.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2016-02-04 17:49:28 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2016-02-05 11:35:20 +0000
commiteafb6670664ce223b0c71e65381442e5a9f345f9 (patch)
treeafb4252d02f0f3679539eebd7a25ac9d2056dfb8 /src/plugins/projectexplorer/kitmanager.h
parent7f61a590abed8b6bbd9e07cd81613f15c4527e5c (diff)
KitInformation: Make defaultValue take a const Kit *
There is no reason not to. Change-Id: I4accb0b690173d93ad6f4c9dd0bce66d8de75faa Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/kitmanager.h')
-rw-r--r--src/plugins/projectexplorer/kitmanager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/kitmanager.h b/src/plugins/projectexplorer/kitmanager.h
index 63d5396b40..3a9ccd9b5d 100644
--- a/src/plugins/projectexplorer/kitmanager.h
+++ b/src/plugins/projectexplorer/kitmanager.h
@@ -71,7 +71,7 @@ public:
Core::Id id() const { return m_id; }
int priority() const { return m_priority; }
- virtual QVariant defaultValue(Kit *) const = 0;
+ virtual QVariant defaultValue(const Kit *) const = 0;
// called to find issues with the kit
virtual QList<Task> validate(const Kit *) const = 0;