diff options
author | Jim Ingham <jingham@apple.com> | 2015-11-05 01:18:07 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-11-05 01:18:07 +0000 |
commit | 2471434cc27a3eb759e47909f360be0608adecdd (patch) | |
tree | 31d42f73e7fa187e858ca26a79aefe3a914d23f3 /lldb/source/Commands/CommandObjectMultiword.cpp | |
parent | 96c6ecc842c5b84434867912e43669fc87b2b409 (diff) | |
download | bcm5719-llvm-2471434cc27a3eb759e47909f360be0608adecdd.tar.gz bcm5719-llvm-2471434cc27a3eb759e47909f360be0608adecdd.zip |
CommandObjectProxy needs to proxy GenerateHelpText as well as
everything else.
<rdar://problem/18383591>
llvm-svn: 252122
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMultiword.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp index 2f0e2a78a0c..206f3b6fb7d 100644 --- a/lldb/source/Commands/CommandObjectMultiword.cpp +++ b/lldb/source/Commands/CommandObjectMultiword.cpp @@ -382,6 +382,14 @@ CommandObjectProxy::IsMultiwordObject () return false; } +void +CommandObjectProxy::GenerateHelpText (Stream &result) +{ + CommandObject *proxy_command = GetProxyCommandObject(); + if (proxy_command) + return proxy_command->GenerateHelpText(result); +} + lldb::CommandObjectSP CommandObjectProxy::GetSubcommandSP (const char *sub_cmd, StringList *matches) { |