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

View File

@@ -4625,7 +4625,7 @@ void GdbEngine::doUpdateLocals(const UpdateParameters &params)
const static bool alwaysVerbose = !qgetenv("QTC_DEBUGGER_PYTHON_VERBOSE").isEmpty();
cmd.arg("passExceptions", alwaysVerbose);
cmd.arg("passexceptions", alwaysVerbose);
cmd.arg("fancy", boolSetting(UseDebuggingHelpers));
cmd.arg("autoderef", boolSetting(AutoDerefPointers));
cmd.arg("dyntype", boolSetting(UseDynamicType));
@@ -4635,12 +4635,12 @@ void GdbEngine::doUpdateLocals(const UpdateParameters &params)
cmd.arg("context", frame.context);
cmd.arg("resultvarname", m_resultVarName);
cmd.arg("partialVariable", params.partialVariable);
cmd.arg("sortStructMembers", boolSetting(SortStructMembers));
cmd.arg("partialvar", params.partialVariable);
cmd.arg("sortstructs", boolSetting(SortStructMembers));
cmd.callback = CB(handleFetchVariables);
runCommand(cmd);
cmd.arg("passExceptions", true);
cmd.arg("passexceptions", true);
m_lastDebuggableCommand = cmd;
}