From: duplo Date: Mon, 26 Jan 2009 12:01:01 +0000 (+0000) Subject: Correct the pagination X-Git-Tag: 2.1.0~460 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=466d4598ea14f533d0768f7f19bfc86e5e9c1146;p=bertos.git Correct the pagination git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2222 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BModulePage.py b/wizard/BModulePage.py index 39cf91d9..3c32a44f 100644 --- a/wizard/BModulePage.py +++ b/wizard/BModulePage.py @@ -154,9 +154,9 @@ class BModulePage(BWizardPage): depends = self._projectInfoRetrieve("MODULES")[selectedModule]["depends"] unsatisfied = self.selectDependencyCheck(selectedModule) if len(unsatisfied) > 0: - QMessageBox.warning(self, self.tr("Dependency error"), - self.tr("The module %1 needs the following modules:\n%2.\n\nDo you want to resolve automatically the problem?").arg(selectedModule).arg(", ".join(unsatisfied)), - QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) + message = self.tr("The module %1 needs the following modules:\n%2.\n\nDo you want to resolve automatically the problem?") + message = message.arg(selectedModule).arg(", ".join(unsatisfied)) + QMessageBox.warning(self, self.tr("Dependency error"), message, QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) def _moduleUnselected(self, unselectedModule): modules = self._projectInfoRetrieve("MODULES") @@ -164,9 +164,9 @@ class BModulePage(BWizardPage): self._projectInfoStore("MODULES", modules) unsatisfied = self.unselectDependencyCheck(unselectedModule) if len(unsatisfied) > 0: - QMessageBox.warning(self, self.tr("Dependency error"), - self.tr("The module %1 is needed by the following modules:\n%2.\n\nDo you want to resolve automatically the problem?").arg(unselectedModule).arg(", ".join(unsatisfied)), - QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) + message = self.tr("The module %1 is needed by the following modules:\n%2.\n\nDo you want to resolve automatically the problem?") + message = message.arg(unselectedModule).arg(", ".join(unsatisfied)) + QMessageBox.warning(self, self.tr("Dependency error"), message, QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) def selectDependencyCheck(self, module): unsatisfied = set()