Debugger: Standardize on all-lowercase for protocol options

CamelCase might be more Qt-ish, but the backends tend to use
lowercase only.

Change-Id: I04b9b7305b54226f27b70151115050c4816f911f
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-10-27 15:50:41 +01:00
parent 1490bab5bd
commit d5101b5d91
5 changed files with 31 additions and 31 deletions
+4 -4
View File
@@ -253,12 +253,12 @@ class Dumper(DumperBase):
self.useDynamicType = int(args.get("dyntype", "0"))
self.useFancy = int(args.get("fancy", "0"))
self.forceQtNamespace = int(args.get("forcens", "0"))
self.passExceptions = int(args.get("passexeptions", "0"))
self.passExceptions = int(args.get("passexceptions", "0"))
self.nativeMixed = int(args.get("nativemixed", "0"))
self.autoDerefPointers = int(args.get("autoderef", "0"))
self.partialUpdate = int(args.get("partial", "0"))
self.fallbackQtVersion = 0x50200
self.sortStructMembers = bool(args.get("sortStructMembers", True))
self.sortStructMembers = bool(args.get("sortstructs", True))
#warn("NAMESPACE: '%s'" % self.qtNamespace())
#warn("EXPANDED INAMES: %s" % self.expandedINames)
@@ -355,7 +355,7 @@ class Dumper(DumperBase):
def fetchVariables(self, args):
self.prepare(args)
partialVariable = args.get("partialVariable", "")
partialVariable = args.get("partialvar", "")
isPartial = len(partialVariable) > 0
(ok, res) = self.tryFetchInterpreterVariables(args)
@@ -1763,7 +1763,7 @@ class CliDumper(Dumper):
def fetchVariables(self, args):
args['fancy'] = 1
args['passException'] = 1
args['passexception'] = 1
args['autoderef'] = 1
name = args['varlist']
self.prepare(args)