From: duplo Date: Thu, 18 Dec 2008 13:19:50 +0000 (+0000) Subject: Add a default reloadData method for the class BWizardPage X-Git-Tag: 2.1.0~603 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=360ffcfefce25e94b64b93ccd9c0dce968dc4622;p=bertos.git Add a default reloadData method for the class BWizardPage git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2079 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BWizardPage.py b/wizard/BWizardPage.py index b8444db7..d33c9cba 100644 --- a/wizard/BWizardPage.py +++ b/wizard/BWizardPage.py @@ -32,4 +32,7 @@ class BWizardPage(QWizardPage): QApplication.instance().project.setInfo(key, value) def _projectInfoRetrieve(self, key): - return QApplication.instance().project.info(key) \ No newline at end of file + return QApplication.instance().project.info(key) + + def reloadData(self): + pass \ No newline at end of file