diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-15 16:41:41 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-15 16:41:41 -0400 |
commit | 390117435ad0595d9fcc9cf4c93f70f7939b8cf6 (patch) | |
tree | 164190a7138e342926219c4f2b7ada65bed4309b /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | de7a090847b4e3113209cf518742cbc1988b3fd8 (diff) | |
download | cmake-390117435ad0595d9fcc9cf4c93f70f7939b8cf6.tar.gz |
Fix KWStyle line length issues.
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index f6f9fbc682..d0eda81e28 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -93,7 +93,8 @@ int cmCPackNSISGenerator::PackageFiles() for ( sit = dirs.begin(); sit != dirs.end(); ++ sit ) { std::string componentName; - std::string fileN = cmSystemTools::RelativePath(toplevel.c_str(), sit->c_str()); + std::string fileN = cmSystemTools::RelativePath(toplevel.c_str(), + sit->c_str()); if ( fileN.empty() ) { continue; |