352 @return tuple containing the histories of command line arguments, |
352 @return tuple containing the histories of command line arguments, |
353 working directories, environment settings and no debug programs |
353 working directories, environment settings and no debug programs |
354 lists |
354 lists |
355 @rtype tuple of four list of str |
355 @rtype tuple of four list of str |
356 """ |
356 """ |
357 if self.dialogType == 0: |
357 noDebugHistory = ( |
358 noDebugHistory = [ |
358 [ |
359 self.ui.multiprocessNoDebugCombo.itemText(index) |
359 self.ui.multiprocessNoDebugCombo.itemText(index) |
360 for index in range(self.ui.multiprocessNoDebugCombo.count()) |
360 for index in range(self.ui.multiprocessNoDebugCombo.count()) |
361 ] |
361 ] |
362 else: |
362 if self.dialogType == 0 else |
363 noDebugHistory = None |
363 None |
|
364 ) |
364 return ( |
365 return ( |
365 [self.ui.cmdlineCombo.itemText(index) for index in range( |
366 [self.ui.cmdlineCombo.itemText(index) for index in range( |
366 self.ui.cmdlineCombo.count())], |
367 self.ui.cmdlineCombo.count())], |
367 self.ui.workdirPicker.getPathItems(), |
368 self.ui.workdirPicker.getPathItems(), |
368 [self.ui.environmentCombo.itemText(index) for index in range( |
369 [self.ui.environmentCombo.itemText(index) for index in range( |