summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/kit.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2012-12-17 16:25:05 +0100
committerTobias Hunger <tobias.hunger@digia.com>2013-02-08 11:27:21 +0100
commitb6ca2fc16ef9c8d8ba50500a6a2a43388ad96281 (patch)
tree79d8aad129b71af3cdf3570fe911a12cf888571e /src/plugins/projectexplorer/kit.h
parentdedbcd96f0c82f11e737f511ac8c1f3e3bdce8ba (diff)
downloadqt-creator-b6ca2fc16ef9c8d8ba50500a6a2a43388ad96281.tar.gz
Kits: Make sure registered kits can not get deleted
Change-Id: I3b293ed9371b201e692fae7a7569239ebc8483e9 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/kit.h')
-rw-r--r--src/plugins/projectexplorer/kit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/kit.h b/src/plugins/projectexplorer/kit.h
index 031a0521a2..78a1ba4991 100644
--- a/src/plugins/projectexplorer/kit.h
+++ b/src/plugins/projectexplorer/kit.h
@@ -43,7 +43,6 @@ namespace ProjectExplorer {
class IOutputParser;
namespace Internal {
-class KitManagerPrivate;
class KitModel;
class KitPrivate;
} // namespace Internal
@@ -58,7 +57,6 @@ class PROJECTEXPLORER_EXPORT Kit
{
public:
Kit(Core::Id id = Core::Id());
- ~Kit();
// Do not trigger evaluations
void blockNotification();
@@ -98,6 +96,8 @@ public:
void copyFrom(const Kit *k);
private:
+ ~Kit();
+
// Unimplemented.
Kit(const Kit &other);
void operator=(const Kit &other);