diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Project/AddFoundFilesDialog.py --- a/Project/AddFoundFilesDialog.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Project/AddFoundFilesDialog.py Fri Mar 11 16:51:57 2011 +0100 @@ -12,6 +12,7 @@ from .Ui_AddFoundFilesDialog import Ui_AddFoundFilesDialog + class AddFoundFilesDialog(QDialog, Ui_AddFoundFilesDialog): """ Class implementing a dialog to show the found files to the user. @@ -22,7 +23,7 @@ button cancels the operation. """ - def __init__(self, files, parent = None, name = None): + def __init__(self, files, parent=None, name=None): """ Constructor @@ -58,7 +59,7 @@ @pyqtSlot() def on_addAllButton_clicked(self): """ - Private slot to handle the 'Add All' button press. + Private slot to handle the 'Add All' button press. @return always 1 (int) """ @@ -82,4 +83,4 @@ list_ = [] for itm in self.fileList.selectedItems(): list_.append(itm.text()) - return list_ \ No newline at end of file + return list_