X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFinalPage.py;h=a191d3c0a81326ef9fddb5560760fd959eed4cf4;hb=4ef5df302b6a0dc984ec503ec4f3cf6ed2be48d3;hp=1285850aea9bb2fb66a2b6573ecfae403316832b;hpb=264df59535958b2180719f01ef29cf655839b5c6;p=bertos.git diff --git a/wizard/BFinalPage.py b/wizard/BFinalPage.py index 1285850a..a191d3c0 100644 --- a/wizard/BFinalPage.py +++ b/wizard/BFinalPage.py @@ -28,7 +28,6 @@ # # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # -# $Id$ # # Author: Lorenzo Berni # @@ -49,11 +48,12 @@ class BFinalPage(BWizardPage): def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui") - self.setTitle(self.tr("Project created successfully")) + self.setTitle(self.tr("Project created successfully!")) ## Overloaded BWizardPage methods ## - def reloadData(self): + def reloadData(self, previous_id=None): + self.setVisible(False) """ Overload of the BWizardPage reloadData method. """ @@ -64,11 +64,15 @@ class BFinalPage(BWizardPage): # locked. self.project.createBertosProject() except OSError, e: - QMessageBox.critical(self, self.tr("Error removing destination directory"), self.tr("Close all the application using this directory and retry.")) + QMessageBox.critical( + self, + self.tr("Error removing destination directory"), + self.tr("Error removing the destination directory. This directory or a file in it is in use by another user or application.\nClose the application which is using the directory and retry.")) self.wizard().back() return finally: QApplication.instance().restoreOverrideCursor() + self.setVisible(True) self._plugin_dict = {} if os.name == "nt": output = self.projectInfo("OUTPUT") @@ -112,4 +116,4 @@ class BFinalPage(BWizardPage): to_be_opened.append(plugin) self.setProjectInfo("TO_BE_OPENED", to_be_opened) - #### \ No newline at end of file + ####