Add comment for each method and class
[bertos.git] / wizard / BFinalPage.py
index 04b1f50782904e5de076f1da8929f599e9df3e3f..af690eeb0e2332bd84d2ec25d17d5198d4519e2b 100644 (file)
@@ -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