summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/component.cpp
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.cpp
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.cpp')
-rw-r--r--src/libs/installer/component.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libs/installer/component.cpp b/src/libs/installer/component.cpp
index 633f7a744..7e57e239d 100644
--- a/src/libs/installer/component.cpp
+++ b/src/libs/installer/component.cpp
@@ -456,22 +456,19 @@ void Component::removeComponent(Component *component)
}
/*!
- Returns a list of child components. If \a kind is set to DirectChildrenOnly, the returned list contains
- only the direct children, if set to Descendants it will also include all descendants of the components
+ Returns a list of child components, including all descendants of the components
children. Note: The returned list does include ALL children, non virtual components as well as virtual
components.
*/
-QList<Component *> Component::childComponents(Kind kind) const
+QList<Component *> Component::descendantComponents() const
{
if (d->m_core->isUpdater())
return QList<Component*>();
QList<Component *> result = d->m_allChildComponents;
- if (kind == DirectChildrenOnly)
- return result;
foreach (Component *component, d->m_allChildComponents)
- result += component->childComponents(kind);
+ result += component->descendantComponents();
return result;
}