summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/component.h
diff options
context:
space:
mode:
authorjkobus <jaroslaw.kobus@theqtcompany.com>2014-12-03 10:14:55 +0100
committerJarek Kobus <jaroslaw.kobus@theqtcompany.com>2014-12-04 08:45:49 +0100
commit1da26b57c0d3b9008211c0a966b2df38f29b14b6 (patch)
treeaa586614ebd746c3f61432ddbe961f04710d82ea /src/libs/installer/component.h
parenta96b063605ece83d30c32529f2592f650c4165a0 (diff)
Remove unneeded Kind enum
The DirectChildernOnly value was not used at all. Change-Id: I9e6d4160f0964e807a34049b899bb4288b262b40 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/libs/installer/component.h')
-rw-r--r--src/libs/installer/component.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libs/installer/component.h b/src/libs/installer/component.h
index f7f43678f..0267905d1 100644
--- a/src/libs/installer/component.h
+++ b/src/libs/installer/component.h
@@ -75,12 +75,6 @@ class INSTALLER_EXPORT Component : public QObject, public ComponentModelHelper
Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled)
public:
- enum Kind
- {
- Descendants = 0x1000, // all descendants of the current component (children, grandchildren, etc.)
- DirectChildrenOnly = 0x2000 // all child components of the current component
- };
-
explicit Component(PackageManagerCore *core);
~Component();
@@ -113,7 +107,7 @@ public:
Component *parentComponent() const;
void appendComponent(Component *component);
void removeComponent(Component *component);
- QList<Component*> childComponents(Component::Kind kind) const;
+ QList<Component*> descendantComponents() const;
void loadComponentScript();