summaryrefslogtreecommitdiffstats
path: root/Source/cmCPluginAPI.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r--Source/cmCPluginAPI.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index a302add..a184ece 100644
--- a/Source/cmCPluginAPI.cxx
+++ b/Source/cmCPluginAPI.cxx
@@ -424,12 +424,12 @@ int CCONV cmExecuteCommand(void *arg, const char *name,
{
cmMakefile *mf = static_cast<cmMakefile *>(arg);
cmListFileFunction lff;
- lff.m_Name = name;
+ lff.Name = name;
for(int i = 0; i < numArgs; ++i)
{
// Assume all arguments are quoted.
- lff.m_Arguments.push_back(cmListFileArgument(args[i], true,
- "[CMake-Plugin]", 0));
+ lff.Arguments.push_back(cmListFileArgument(args[i], true,
+ "[CMake-Plugin]", 0));
}
return mf->ExecuteCommand(lff);
}