1038 ############################################################################ |
1038 ############################################################################ |
1039 |
1039 |
1040 def __releaseTSFileDone(self, exitCode, exitStatus): |
1040 def __releaseTSFileDone(self, exitCode, exitStatus): |
1041 """ |
1041 """ |
1042 Private slot to handle the finished signal of the lrelease process. |
1042 Private slot to handle the finished signal of the lrelease process. |
|
1043 |
|
1044 @param exitCode exit code of the process (integer) |
|
1045 @param exitStatus exit status of the process (QProcess.ExitStatus) |
1043 """ |
1046 """ |
1044 self.lreleaseProcRunning = False |
1047 self.lreleaseProcRunning = False |
1045 if exitStatus == QProcess.NormalExit and exitCode == 0: |
1048 if exitStatus == QProcess.NormalExit and exitCode == 0: |
1046 ui = e5App().getObject("UserInterface") |
1049 ui = e5App().getObject("UserInterface") |
1047 if ui.notificationsEnabled(): |
1050 if ui.notificationsEnabled(): |