summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackDragNDropGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-08-11 20:17:09 (GMT)
committerBrad King <brad.king@kitware.com>2010-08-11 20:17:09 (GMT)
commit31a313d47043923bc722554175912e75a03a13f6 (patch)
tree0ff5155324150c40c1fcb95d553cdc38df0b5ad6 /Source/CPack/cmCPackDragNDropGenerator.h
parentcd7b8a03f5403603da44432470f177601b5bf42b (diff)
downloadCMake-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/cmCPackDragNDropGenerator.h')
-rw-r--r--Source/CPack/cmCPackDragNDropGenerator.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackDragNDropGenerator.h b/Source/CPack/cmCPackDragNDropGenerator.h
index 8a4d774..dcef7fb 100644
--- a/Source/CPack/cmCPackDragNDropGenerator.h
+++ b/Source/CPack/cmCPackDragNDropGenerator.h
@@ -34,8 +34,7 @@ protected:
bool CopyFile(cmOStringStream& source, cmOStringStream& target);
bool RunCommand(cmOStringStream& command, std::string* output = 0);
- virtual int CreateDMG(const std::string& installdir,
- const std::string& outdmg);
+ int CreateDMG();
std::string InstallPrefix;
};