summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/uninstallercalculator.h
diff options
context:
space:
mode:
authorjkobus <jaroslaw.kobus@digia.com>2014-10-10 12:03:21 +0200
committerJarek Kobus <jaroslaw.kobus@digia.com>2014-11-04 11:37:28 +0100
commit120368e321b01bcfd5859e21f36706dd8349cb05 (patch)
tree363a05578eab1630212246d0a875ae8351fab46c /src/libs/installer/uninstallercalculator.h
parentc6ae7c8a44d2dc6b0c4479ce4d965c364c2218ee (diff)
Fix the uninstaller calculator
Don't include dependencies which were not installed before. Fix the "Cascade dependencies" test of "solver". Change-Id: I807503840af5c841cde89fdbbfc3f6932d4787b8 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/libs/installer/uninstallercalculator.h')
-rw-r--r--src/libs/installer/uninstallercalculator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/installer/uninstallercalculator.h b/src/libs/installer/uninstallercalculator.h
index d982c9231..48e666c88 100644
--- a/src/libs/installer/uninstallercalculator.h
+++ b/src/libs/installer/uninstallercalculator.h
@@ -52,11 +52,11 @@ public:
QSet<Component*> componentsToUninstall() const;
- bool appendComponentsToUninstall(const QList<Component*> &components);
+ void appendComponentsToUninstall(const QList<Component*> &components);
private:
- bool appendComponentToUninstall(Component *component);
+ void appendComponentToUninstall(Component *component);
QList<Component *> m_installedComponents;
QSet<Component *> m_componentsToUninstall;