From 7a132bfa3128cc7f34a7351a15d0e99211cf1c64 Mon Sep 17 00:00:00 2001 From: duplo Date: Thu, 18 Dec 2008 11:49:06 +0000 Subject: [PATCH 1/1] Add a stub of the cpu list populate method git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2075 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BCpuPage.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index 8547f42a..97479027 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -9,11 +9,19 @@ # Author: Lorenzo Berni # + from BWizardPage import * +import bertos_utils class BCpuPage(BWizardPage): def __init__(self): BWizardPage.__init__(self, "cpu_select.ui") self.setTitle(self.tr("Select the CPU")) + #self._populateCpuList() + + def _populateCpuList(self): + cpus = bertos_utils.findDefinitions("cdef", self._projectInfoRetrieve("SOURCES_PATH")) + for cpu in cpus.keys(): + self.pageContent.cpuList.addItem(QListWidgetItem(cpu)) \ No newline at end of file -- 2.25.1