diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-01-11 15:49:18 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2007-01-11 15:49:18 (GMT) |
commit | cd5535ee9ce29dc90ace2e3da119c858fe92283d (patch) | |
tree | 0dd1090bee2937f6f9d7e406445a1aabef1c2cec | |
parent | bee7c788fed9e8af2f866c2577773e3edbce6653 (diff) | |
download | CMake-cd5535ee9ce29dc90ace2e3da119c858fe92283d.zip CMake-cd5535ee9ce29dc90ace2e3da119c858fe92283d.tar.gz CMake-cd5535ee9ce29dc90ace2e3da119c858fe92283d.tar.bz2 |
STYLE: Fix kwstyle issues
-rw-r--r-- | Source/CPack/cmCPackGenericGenerator.cxx | 3 | ||||
-rw-r--r-- | Source/CPack/cmCPackGenericGenerator.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackGenericGenerator.cxx b/Source/CPack/cmCPackGenericGenerator.cxx index 0f0ddad..1b5c61e 100644 --- a/Source/CPack/cmCPackGenericGenerator.cxx +++ b/Source/CPack/cmCPackGenericGenerator.cxx @@ -154,7 +154,8 @@ int cmCPackGenericGenerator::InstallProject() this->CleanTemporaryDirectory(); std::string tempInstallDirectoryWithPostfix = this->GetOption("CPACK_TEMPORARY_INSTALL_DIRECTORY"); - tempInstallDirectoryWithPostfix += this->GetTemporaryInstallDirectoryPostfix(); + tempInstallDirectoryWithPostfix + += this->GetTemporaryInstallDirectoryPostfix(); const char* tempInstallDirectory = tempInstallDirectoryWithPostfix.c_str(); int res = 1; if ( !cmsys::SystemTools::MakeDirectory(tempInstallDirectory)) diff --git a/Source/CPack/cmCPackGenericGenerator.h b/Source/CPack/cmCPackGenericGenerator.h index 27d5098..6ff9cda 100644 --- a/Source/CPack/cmCPackGenericGenerator.h +++ b/Source/CPack/cmCPackGenericGenerator.h @@ -103,7 +103,8 @@ protected: virtual const char* GetTemporaryInstallDirectoryPostfix() { return ""; } virtual std::string FindTemplate(const char* name); - virtual bool ConfigureFile(const char* inName, const char* outName, bool copyOnly = false); + virtual bool ConfigureFile(const char* inName, const char* outName, + bool copyOnly = false); virtual bool ConfigureString(const std::string& input, std::string& output); virtual int InitializeInternal(); |