70 def on_buttonBox_accepted(self): |
70 def on_buttonBox_accepted(self): |
71 """ |
71 """ |
72 Private slot to handle the accepted signal of the button box. |
72 Private slot to handle the accepted signal of the button box. |
73 """ |
73 """ |
74 if self.__uninstallPlugin(): |
74 if self.__uninstallPlugin(): |
75 self.emit(SIGNAL("accepted()")) |
75 self.accepted.emit() |
76 |
76 |
77 def __uninstallPlugin(self): |
77 def __uninstallPlugin(self): |
78 """ |
78 """ |
79 Private slot to uninstall the selected plugin. |
79 Private slot to uninstall the selected plugin. |
80 |
80 |