diff options
author | Brad King <brad.king@kitware.com> | 2010-08-11 20:17:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-08-11 20:17:09 (GMT) |
commit | 31a313d47043923bc722554175912e75a03a13f6 (patch) | |
tree | 0ff5155324150c40c1fcb95d553cdc38df0b5ad6 /Source/CPack/cmCPackBundleGenerator.cxx | |
parent | cd7b8a03f5403603da44432470f177601b5bf42b (diff) | |
download | CMake-31a313d47043923bc722554175912e75a03a13f6.zip CMake-31a313d47043923bc722554175912e75a03a13f6.tar.gz CMake-31a313d47043923bc722554175912e75a03a13f6.tar.bz2 |
CPack: Avoid member shadowing after API refactor
After converting method arguments to members we need to avoid use of the
same names as local variables and other method arguments.
Diffstat (limited to 'Source/CPack/cmCPackBundleGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackBundleGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackBundleGenerator.cxx b/Source/CPack/cmCPackBundleGenerator.cxx index a9d283a..06a0509 100644 --- a/Source/CPack/cmCPackBundleGenerator.cxx +++ b/Source/CPack/cmCPackBundleGenerator.cxx @@ -165,5 +165,5 @@ int cmCPackBundleGenerator::PackageFiles() cmSystemTools::SetPermissions(command_target.str().c_str(), 0777); } - return this->CreateDMG(toplevel.c_str(), packageFileNames[0].c_str()); + return this->CreateDMG(); } |