diff options
Diffstat (limited to 'lldb/source/API/SBLaunchInfo.cpp')
-rw-r--r-- | lldb/source/API/SBLaunchInfo.cpp | 8 |
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 |