X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=af690eeb0e2332bd84d2ec25d17d5198d4519e2b;hb=ca1a17d62748010cd95a0012f67a9e80c6565d73;hp=04b1f50782904e5de076f1da8929f599e9df3e3f;hpb=a1aee0fd51fc5c32d712e76367abc3a2365c6324;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 04b1f507..af690eeb 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -19,12 +19,18 @@ 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")) 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