diff -r e35d2cda9a74 -r b3d966393ba9 Debugger/StartDialog.py --- a/Debugger/StartDialog.py Sat Sep 04 19:51:19 2010 +0200 +++ b/Debugger/StartDialog.py Sat Sep 04 19:51:48 2010 +0200 @@ -71,7 +71,7 @@ self.ui = Ui_StartProfileDialog() self.ui.setupUi(self) - self.clearButton = self.ui.buttonBox.addButton(\ + self.clearButton = self.ui.buttonBox.addButton( self.trUtf8("Clear Histories"), QDialogButtonBox.ActionRole) self.workdirCompleter = E5DirCompleter(self.ui.workdirCombo) @@ -115,7 +115,7 @@ Private method used to open a directory selection dialog. """ cwd = self.ui.workdirCombo.currentText() - d = QFileDialog.getExistingDirectory(\ + d = QFileDialog.getExistingDirectory( self, self.trUtf8("Working directory"), cwd, @@ -128,7 +128,7 @@ """ Private slot to enable/disable the OK button. """ - self.ui.buttonBox.button(QDialogButtonBox.Ok).setDisabled(\ + self.ui.buttonBox.button(QDialogButtonBox.Ok).setDisabled( self.ui.modFuncCombo.currentText() == "") def getData(self): @@ -223,4 +223,4 @@ @param button button that was clicked (QAbstractButton) """ if button == self.clearButton: - self.__clearHistories() + self.__clearHistories() \ No newline at end of file