def about(self):
     dlg = aboutdialog.AboutDialog()
     dlg.exec_()
Ejemplo n.º 2
0
 def about(self):
     d = aboutdialog.AboutDialog()
     d.exec_()
Ejemplo n.º 3
0
 def aboutActionTriggered(self):
     about_box = aboutdialog.AboutDialog(self)
     about_box.exec()
Ejemplo n.º 4
0
 def show_about(self):
     about = aboutdialog.AboutDialog(self)
     about.show()
Ejemplo n.º 5
0
 def ShowAboutDialog(self):
     about_dialog = aboutdialog.AboutDialog(self.main_window)
     about_dialog.show()
     return about_dialog