50 def on_emailButton_clicked(self): |
50 def on_emailButton_clicked(self): |
51 """ |
51 """ |
52 Private slot to send an email. |
52 Private slot to send an email. |
53 """ |
53 """ |
54 self.accept() |
54 self.accept() |
55 self.__ui.showEmailDialog("bug", |
55 self.__ui.showEmailDialog( |
56 attachFile=self.__logFile, deleteAttachFile=True) |
56 "bug", attachFile=self.__logFile, deleteAttachFile=True) |
57 |
57 |
58 @pyqtSlot() |
58 @pyqtSlot() |
59 def on_deleteButton_clicked(self): |
59 def on_deleteButton_clicked(self): |
60 """ |
60 """ |
61 Private slot to delete the log file. |
61 Private slot to delete the log file. |