X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=7eda6f572eeb7addccabae8b6d6e1a0d8307d308;hb=ddfbc9df15a5a68f18913995533b9ca9153caaae;hp=04b1f50782904e5de076f1da8929f599e9df3e3f;hpb=d7bc79d9a4075745a39715af462e2b9a8dfbcc8e;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 04b1f507..7eda6f57 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -19,12 +19,22 @@ import bertos_utils from const import * class BFinalPage(BWizardPage): + """ + Last page of the wizard. It creates the project and show a success message. + """ def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui") self.setTitle(self.tr("Project created successfully")) + + ## Overloaded BWizardPage methods ## def reloadData(self): + """ + Overload of the BWizardPage reloadData method. + """ QApplication.instance().setOverrideCursor(Qt.WaitCursor) bertos_utils.createBertosProject(self.wizard().project()) - QApplication.instance().restoreOverrideCursor() \ No newline at end of file + QApplication.instance().restoreOverrideCursor() + + #### \ No newline at end of file