Debugger/VariablesViewer.py

changeset 3032
927a2f8b3669
parent 2988
f53c03574697
child 3060
5883ce99ee12
child 3160
209a07d7e401
diff -r ed2eaa573ca5 -r 927a2f8b3669 Debugger/VariablesViewer.py
--- a/Debugger/VariablesViewer.py	Sat Oct 19 11:14:51 2013 +0200
+++ b/Debugger/VariablesViewer.py	Sat Oct 19 11:49:31 2013 +0200
@@ -522,17 +522,17 @@
         @return The item that was generated (VariableItem).
         """
         if isSpecial and \
-           (self.dvar_rx_class1.exactMatch(dvar) or \
-            self.dvar_rx_class2.exactMatch(dvar)):
+           (self.dvar_rx_class1.exactMatch(dvar) or
+                self.dvar_rx_class2.exactMatch(dvar)):
             isSpecial = False
         
         if self.rx_class2.exactMatch(dtype):
             return SpecialVarItem(parent, dvar, dvalue, dtype[7:-1],
                                   self.framenr, self.scope)
         elif dtype != "void *" and \
-             (self.rx_class.exactMatch(dvalue) or \
-              self.rx_class3.exactMatch(dvalue) or \
-              isSpecial):
+            (self.rx_class.exactMatch(dvalue) or
+             self.rx_class3.exactMatch(dvalue) or
+             isSpecial):
             if self.dvar_rx_special_array_element.exactMatch(dvar):
                 return SpecialArrayElementVarItem(parent, dvar, dvalue, dtype,
                                                   self.framenr, self.scope)

eric ide

mercurial