"""
try:
QApplication.instance().setOverrideCursor(Qt.WaitCursor)
- self.project().loadSourceTree()
+ self.project.loadSourceTree()
self.populateCpuList()
cpu_name = self.projectInfo("CPU_NAME")
selected_freq = self.projectInfo("SELECTED_FREQ")
"""
self.pageContent.cpuList.clear()
self.pageContent.cpuList.setCurrentItem(None)
- infos = self.project().loadCpuInfos()
+ infos = self.project.loadCpuInfos()
tag_list = bertos_utils.getTagSet(infos)
# Create, fill and store the dict with the tags
tag_dict = {}
module = self.currentModule()
if module:
try:
- supported = bertos_utils.isSupported(self.project(), module=module)
+ supported = bertos_utils.isSupported(self.project, module=module)
except SupportedException, e:
self.exceptionOccurred(self.tr("Error evaluating \"%1\" for module %2").arg(e.support_string).arg(module))
supported = True
# Doesn't show the hidden fields
continue
try:
- param_supported = bertos_utils.isSupported(self.project(), property_id=(configuration, property))
+ param_supported = bertos_utils.isSupported(self.project, property_id=(configuration, property))
except SupportedException, e:
self.exceptionOccurred(self.tr("Error evaluating \"%1\" for parameter %2").arg(e.support_string).arg(property))
param_supported = True
and not self.projectInfo("LISTS") \
and not self.projectInfo("CONFIGURATIONS"):
try:
- self.project().loadModuleData()
+ self.project.loadModuleData()
except ModuleDefineException, e:
self.exceptionOccurred(self.tr("Error parsing line '%2' in file %1").arg(e.path).arg(e.line))
except EnumDefineException, e:
enabled = modules[module]["enabled"]
module_item = QTreeWidgetItem(item, QStringList([module]))
try:
- supported = bertos_utils.isSupported(self.project(), module=module)
+ supported = bertos_utils.isSupported(self.project, module=module)
except SupportedException, e:
self.exceptionOccurred(self.tr("Error evaluating \"%1\" for module %2").arg(e.support_string).arg(module))
supported = True