Ejemplo n.º 1
0
 def __about(self):
     """
     Private slot to handle the About dialog.
     """
     from AboutPlugin.AboutDialog import AboutDialog
     dlg = AboutDialog(self.__ui)
     dlg.exec_()
Ejemplo n.º 2
0
 def __about(self):
     """
     Private slot to handle the About dialog.
     """
     from AboutPlugin.AboutDialog import AboutDialog
     if self.__aboutDialog is None:
         self.__aboutDialog = AboutDialog(self.__ui)
     self.__aboutDialog.show()