Modify the timout of the validation process and the result rapresentation
[bertos.git] / wizard / BWizardPage.py
index 4eb9915b5fed6331639fb0aa431d2da44ce3ae6c..d33c9cbad4d932c43ab11f681631cf4df2797bbc 100644 (file)
@@ -26,4 +26,13 @@ class BWizardPage(QWizardPage):
         QApplication.instance().settings.setValue(QString(key), QVariant(value))
     
     def _settingsRetrieve(self, key):
-        return QApplication.instance().settings.value(QString(key), QVariant())
\ No newline at end of file
+        return QApplication.instance().settings.value(QString(key), QVariant())
+    
+    def _projectInfoStore(self, key, value):
+        QApplication.instance().project.setInfo(key, value)
+    
+    def _projectInfoRetrieve(self, key):
+        return QApplication.instance().project.info(key)
+    
+    def reloadData(self):
+        pass
\ No newline at end of file