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
This commit is contained in:
Enrico Granata
2015-02-20 22:20:30 +00:00
parent b65c6299d4
commit b38ef8c2b6
22 changed files with 58 additions and 58 deletions

View File

@@ -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