diff --git a/Source/CPack/cmCPackDragNDropGenerator.cxx b/Source/CPack/cmCPackDragNDropGenerator.cxx index 228066205..a7c58a9ba 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.cxx +++ b/Source/CPack/cmCPackDragNDropGenerator.cxx @@ -121,8 +121,10 @@ bool cmCPackDragNDropGenerator::RunCommand(cmOStringStream& command, return true; } - -int cmCPackDragNDropGenerator::CreateDMG(const std::string& toplevel, const std::string& outFileName) + +//---------------------------------------------------------------------- +int cmCPackDragNDropGenerator::CreateDMG(const std::string& toplevel, + const std::string& outFileName) { // Get optional arguments ... const std::string cpack_package_icon = this->GetOption("CPACK_PACKAGE_ICON") @@ -256,4 +258,3 @@ int cmCPackDragNDropGenerator::CreateDMG(const std::string& toplevel, const std: return 1; } - diff --git a/Source/CPack/cmCPackDragNDropGenerator.h b/Source/CPack/cmCPackDragNDropGenerator.h index ed0307d37..358d65fb1 100644 --- a/Source/CPack/cmCPackDragNDropGenerator.h +++ b/Source/CPack/cmCPackDragNDropGenerator.h @@ -39,11 +39,11 @@ 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); + + virtual int CreateDMG(const std::string& installdir, + const std::string& outdmg); std::string InstallPrefix; }; #endif -