summaryrefslogtreecommitdiffstats
path: root/lldb/source/API
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2015-02-20 22:20:30 +0000
committerEnrico Granata <egranata@apple.com>2015-02-20 22:20:30 +0000
commitb38ef8c2b60d9bd4ea4ab2d603f401ee080a0163 (patch)
treeb021230083eb08d649c44d62458691ba574d91e0 /lldb/source/API
parentb65c6299d4dbada38e4f94f30bc54905a11f2305 (diff)
downloadbcm5719-llvm-b38ef8c2b60d9bd4ea4ab2d603f401ee080a0163.tar.gz
bcm5719-llvm-b38ef8c2b60d9bd4ea4ab2d603f401ee080a0163.zip
Rename the "glob arguments" feature to "shell expand arguments"
This should not bring any feature change, except changing names of things here and there llvm-svn: 230077
Diffstat (limited to 'lldb/source/API')
-rw-r--r--lldb/source/API/SBLaunchInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/API/SBLaunchInfo.cpp b/lldb/source/API/SBLaunchInfo.cpp
index 681f5fe0ebf..82289ba0885 100644
--- a/lldb/source/API/SBLaunchInfo.cpp
+++ b/lldb/source/API/SBLaunchInfo.cpp
@@ -224,15 +224,15 @@ SBLaunchInfo::SetShell (const char * path)
}
bool
-SBLaunchInfo::GetGlobArguments ()
+SBLaunchInfo::GetShellExpandArguments ()
{
- return m_opaque_sp->GetGlobArguments();
+ return m_opaque_sp->GetShellExpandArguments();
}
void
-SBLaunchInfo::SetGlobArguments (bool glob)
+SBLaunchInfo::SetShellExpandArguments (bool expand)
{
- m_opaque_sp->SetGlobArguments(glob);
+ m_opaque_sp->SetShellExpandArguments(expand);
}
uint32_t
OpenPOWER on IntegriCloud