diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-19 17:28:46 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-19 17:28:46 (GMT) |
commit | 24bce99cbff13cb337c543dce55f056351caa2fc (patch) | |
tree | 6f34febd8379a1c848a8c22721552964afc34c61 /Source/cmCablePackageCommand.cxx | |
parent | 57c4325c7dc3a19dea5276f9ab92647d42a3d43a (diff) | |
download | CMake-24bce99cbff13cb337c543dce55f056351caa2fc.zip CMake-24bce99cbff13cb337c543dce55f056351caa2fc.tar.gz CMake-24bce99cbff13cb337c543dce55f056351caa2fc.tar.bz2 |
cleaned up the coding style made ivars private etc
Diffstat (limited to 'Source/cmCablePackageCommand.cxx')
-rw-r--r-- | Source/cmCablePackageCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCablePackageCommand.cxx b/Source/cmCablePackageCommand.cxx index 3b19f15..19fac7d 100644 --- a/Source/cmCablePackageCommand.cxx +++ b/Source/cmCablePackageCommand.cxx @@ -117,7 +117,7 @@ bool cmCablePackageCommand::Invoke(std::vector<std::string>& args) outputs, m_TargetName.c_str()); // add the source list to the target - m_Makefile->GetTargets()[m_TargetName.c_str()].m_SourceLists.push_back(m_PackageName); + m_Makefile->GetTargets()[m_TargetName.c_str()].GetSourceLists().push_back(m_PackageName); return true; } |