From 466d4598ea14f533d0768f7f19bfc86e5e9c1146 Mon Sep 17 00:00:00 2001 From: duplo Date: Mon, 26 Jan 2009 12:01:01 +0000 Subject: [PATCH] Correct the pagination git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2222 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BModulePage.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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() -- 2.25.1