diff options
author | Enrico Granata <granata.enrico@gmail.com> | 2011-09-09 23:33:14 +0000 |
---|---|---|
committer | Enrico Granata <granata.enrico@gmail.com> | 2011-09-09 23:33:14 +0000 |
commit | 78d0638b7d962aa737f167d0b464cac0ee1c5645 (patch) | |
tree | fcf4d69ee74118505dde7f3300efe354d9980320 /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | b1d7529e570545a8faceae1c7bf82ed4384e902e (diff) | |
download | llvm-78d0638b7d962aa737f167d0b464cac0ee1c5645.zip llvm-78d0638b7d962aa737f167d0b464cac0ee1c5645.tar.gz llvm-78d0638b7d962aa737f167d0b464cac0ee1c5645.tar.bz2 |
Renaming a bulk of method calls from Get() to something more descriptive
llvm-svn: 139435
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 1247209..58cb095 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -394,7 +394,7 @@ public: SummaryFormatSP summary_format_sp; if (!m_option_variable.summary.empty()) - DataVisualization::NamedSummaryFormats::Get(ConstString(m_option_variable.summary.c_str()), summary_format_sp); + DataVisualization::NamedSummaryFormats::GetSummaryFormat(ConstString(m_option_variable.summary.c_str()), summary_format_sp); ValueObject::DumpValueObjectOptions options; |