Use the brief instead of the parameter name showing the parameter list in the summary...
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 19 Feb 2009 14:07:19 +0000 (14:07 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 19 Feb 2009 14:07:19 +0000 (14:07 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2360 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BCreationPage.py

index ae1e71cbd9e31aecc33fcbec504c70e5534e093e..e83f45948c1ad70eb22e823767a464bbd4daeb4a 100644 (file)
@@ -66,7 +66,7 @@ class BCreationPage(BWizardPage):
                 moduleItem = QTreeWidgetItem(moduleTitle, QStringList([module + " - " + information["description"]]))
                 if len(information["configuration"]) > 0:
                     for property, data in configurations[information["configuration"]].items():
-                        configurationItem = QTreeWidgetItem(moduleItem, QStringList([data["description"] + " - " + data["value"]]))
+                        configurationItem = QTreeWidgetItem(moduleItem, QStringList([data["brief"] + " " + data["value"]]))
         topLevel.append(moduleTitle)
         self.pageContent.summaryTree.insertTopLevelItems(0, topLevel)