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