Renaming the setting to enable/disable automatic one-lining of summaries as auto-one-line-summaries

llvm-svn: 193801
This commit is contained in:
Enrico Granata
2013-10-31 21:01:07 +00:00
parent 282a47037b
commit 90a8db30de
3 changed files with 6 additions and 6 deletions

View File

@@ -335,7 +335,7 @@ bool
FormatManager::ShouldPrintAsOneLiner (ValueObject& valobj)
{
// if settings say no oneline whatsoever
if (valobj.GetTargetSP().get() && valobj.GetTargetSP()->GetDebugger().GetEnableAutoOneLine() == false)
if (valobj.GetTargetSP().get() && valobj.GetTargetSP()->GetDebugger().GetAutoOneLineSummaries() == false)
return false; // then don't oneline
// if this object has a summary, don't try to do anything special to it