From: duplo Date: Thu, 11 Dec 2008 09:27:59 +0000 (+0000) Subject: Add a little workaround for get the icons work X-Git-Tag: 2.1.0~682 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=18e7fed95d1d14964877d461841200a5c7f7f4d6;p=bertos.git Add a little workaround for get the icons work git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2000 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BWizardPage.py b/wizard/BWizardPage.py index 4233fc5b..b278de11 100644 --- a/wizard/BWizardPage.py +++ b/wizard/BWizardPage.py @@ -17,6 +17,9 @@ class BWizardPage(QWizardPage): def __init__(self, wizardGui, parent = None): QWizardPage.__init__(self, parent) + # TODO: see why this function call is needed for display the + # applications icons... + uic.loadUiType(wizardGui) self.pageContent = uic.loadUi(wizardGui, None) layout = QVBoxLayout() layout.addWidget(self.pageContent)