From: duplo Date: Wed, 17 Dec 2008 13:30:11 +0000 (+0000) Subject: Put the emit of the signal new/editProject at the end of the method X-Git-Tag: 2.1.0~629 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=925ec5982c8c7c883f7ac4ee1cba0f60d6258cf4;p=bertos.git Put the emit of the signal new/editProject at the end of the method git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2053 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BStartPage.py b/wizard/BStartPage.py index 27f139be..38198bae 100644 --- a/wizard/BStartPage.py +++ b/wizard/BStartPage.py @@ -39,9 +39,9 @@ class BStartPage(QWidget): self.buttonGroup.setExclusive(True) def newProject(self): - self.emit(SIGNAL("newProject")) self.close() + self.emit(SIGNAL("newProject")) def editProject(self): - self.emit(SIGNAL("editProject")) self.close() + self.emit(SIGNAL("editProject"))