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