summaryrefslogtreecommitdiff
path: root/Source/CPack
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2007-01-11 10:49:18 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2007-01-11 10:49:18 -0500
commitcd5535ee9ce29dc90ace2e3da119c858fe92283d (patch)
tree0dd1090bee2937f6f9d7e406445a1aabef1c2cec /Source/CPack
parentbee7c788fed9e8af2f866c2577773e3edbce6653 (diff)
downloadcmake-cd5535ee9ce29dc90ace2e3da119c858fe92283d.tar.gz
STYLE: Fix kwstyle issues
Diffstat (limited to 'Source/CPack')
-rw-r--r--Source/CPack/cmCPackGenericGenerator.cxx3
-rw-r--r--Source/CPack/cmCPackGenericGenerator.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackGenericGenerator.cxx b/Source/CPack/cmCPackGenericGenerator.cxx
index 0f0ddadfe6..1b5c61e8be 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 27d5098f6f..6ff9cda43f 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();