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