Rename CMIDriver::LocalDebugSessionStartupInjectCommands to CMIDriver::LocalDebugSessionStartupExecuteCommands after r230003

llvm-svn: 230944
This commit is contained in:
Ilia K 2015-03-02 10:58:02 +00:00
parent 1ca3b83255
commit f1115fe0c5
2 changed files with 3 additions and 3 deletions

View File

@ -570,7 +570,7 @@ CMIDriver::DoMainLoop(void)
#if MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
if (HaveExecutableFileNamePathOnCmdLine())
{
if (!LocalDebugSessionStartupInjectCommands())
if (!LocalDebugSessionStartupExecuteCommands())
{
SetErrorDescription(MIRSRC(IDS_MI_INIT_ERR_LOCAL_DEBUG_SESSION));
return MIstatus::failure;
@ -1170,7 +1170,7 @@ CMIDriver::GetExecutableFileNamePathOnCmdLine(void) const
// Throws: None.
//--
bool
CMIDriver::LocalDebugSessionStartupInjectCommands(void)
CMIDriver::LocalDebugSessionStartupExecuteCommands(void)
{
const CMIUtilString strCmd(CMIUtilString::Format("-file-exec-and-symbols \"%s\"", m_strCmdLineArgExecuteableFileNamePath.AddSlashes().c_str()));
const bool bOk = CMICmnStreamStdout::TextToStdout(strCmd);

View File

@ -148,7 +148,7 @@ class CMIDriver : public CMICmnBase,
bool StopWorkerThreads(void);
bool InitClientIDEToMIDriver(void) const;
bool InitClientIDEEclipse(void) const;
bool LocalDebugSessionStartupInjectCommands(void);
bool LocalDebugSessionStartupExecuteCommands(void);
// Overridden:
private: