88 self.setWindowTitle( |
88 self.setWindowTitle( |
89 self.trUtf8('{0} - {1}').format(self.cmdname, self.filename)) |
89 self.trUtf8('{0} - {1}').format(self.cmdname, self.filename)) |
90 self.process.start(program, args) |
90 self.process.start(program, args) |
91 procStarted = self.process.waitForStarted(5000) |
91 procStarted = self.process.waitForStarted(5000) |
92 if not procStarted: |
92 if not procStarted: |
93 E5MessageBox.critical(self, |
93 E5MessageBox.critical( |
|
94 self, |
94 self.trUtf8('Process Generation Error'), |
95 self.trUtf8('Process Generation Error'), |
95 self.trUtf8( |
96 self.trUtf8( |
96 'The process {0} could not be started. ' |
97 'The process {0} could not be started. ' |
97 'Ensure, that it is in the search path.' |
98 'Ensure, that it is in the search path.' |
98 ).format(program)) |
99 ).format(program)) |