Debugger/VariablesFilterDialog.py

changeset 945
8cd4d08fa9f6
parent 791
9ec2ac20e54e
child 1112
8a7d1b9d18db
diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Debugger/VariablesFilterDialog.py
--- a/Debugger/VariablesFilterDialog.py	Fri Mar 11 08:55:14 2011 +0100
+++ b/Debugger/VariablesFilterDialog.py	Fri Mar 11 16:51:57 2011 +0100
@@ -23,7 +23,7 @@
     It opens a dialog window for the configuration of the variables type
     filter to be applied during a debugging session.
     """
-    def __init__(self, parent = None, name = None, modal = False):
+    def __init__(self, parent=None, name=None, modal=False):
         """
         Constructor
         
@@ -31,7 +31,7 @@
         @param name name of this dialog (string)
         @param modal flag to indicate a modal dialog (boolean)
         """
-        QDialog.__init__(self,parent)
+        QDialog.__init__(self, parent)
         if name:
             self.setObjectName(name)
         self.setModal(modal)
@@ -75,7 +75,7 @@
         
     def setSelection(self, lList, gList):
         """
-        Public slot to set the current selection. 
+        Public slot to set the current selection.
         
         @param lList local variables filter (list of int)
         @param gList global variables filter (list of int)
@@ -94,4 +94,4 @@
         @param button button that was clicked (QAbstractButton)
         """
         if button == self.defaultButton:
-            Preferences.setVarFilters(self.getSelection())
\ No newline at end of file
+            Preferences.setVarFilters(self.getSelection())

eric ide

mercurial