summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorkh1 <qt-info@nokia.com>2011-04-05 20:28:21 +0200
committerkh1 <qt-info@nokia.com>2011-04-05 20:28:21 +0200
commit6b1fe02f808b8c0bd1b9dcadb484072face9957f (patch)
tree687a8ea606c465ad811ceea49d87460745331814 /installerbuilder
parent9937c85510a0bf09f5f1057527913c6d157ad4ae (diff)
Append, not set.
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/componentmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/installerbuilder/libinstaller/componentmodel.cpp b/installerbuilder/libinstaller/componentmodel.cpp
index a5fe5f27f..934f0198b 100644
--- a/installerbuilder/libinstaller/componentmodel.cpp
+++ b/installerbuilder/libinstaller/componentmodel.cpp
@@ -173,7 +173,7 @@ void ComponentModel::appendRootComponents(QList<Component*> rootComponents)
beginResetModel();
m_cache.clear();
- m_rootComponentList = rootComponents;
+ m_rootComponentList += rootComponents;
endResetModel();
}