X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBWizardPage.py;h=dd1ccc95466b3fbf37f20c4c0b90e82ecd9bcdf0;hb=42a54556a5bda6f87b12cb7fe83f128abcf51de2;hp=b4fc6217025419c244c07c57af0743e68ca89319;hpb=b1ba8881d40708e05b49ae5e42661a53c149c26c;p=bertos.git diff --git a/wizard/BWizardPage.py b/wizard/BWizardPage.py index b4fc6217..dd1ccc95 100644 --- a/wizard/BWizardPage.py +++ b/wizard/BWizardPage.py @@ -24,6 +24,9 @@ class BWizardPage(QWizardPage): layout.addWidget(self.pageContent) self.setLayout(layout) + def _exceptionOccurred(self, message): + QMessageBox.critical(self, self.tr("Error occurred"), message, QMessageBox.Ok, QMessageBox.NoButton) + def _settingsStore(self, key, value): QApplication.instance().settings.setValue(QString(key), value) @@ -61,4 +64,7 @@ class BWizardPage(QWizardPage): self._settingsStore("toolchains", qvariant_converter.convertBoolDict(toolchains)) def reloadData(self): + pass + + def saveData(self): pass \ No newline at end of file