diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-19 16:03:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-19 16:03:16 (GMT) |
commit | 4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96 (patch) | |
tree | 07da8fea2227aa6f7699ed4daae36abe2e4b2791 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | 64c124be2315cf0973a15945e4c7bfb219149d73 (diff) | |
download | CMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.zip CMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.tar.gz CMake-4168c0797bdc3e6c2ff6cdd40bd1099edc5a0c96.tar.bz2 |
ENH: fix line length error
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 63d62bf..f742d8e 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -283,9 +283,10 @@ void cmCPackNSISGenerator::CreateMenuLinks( cmOStringStream& str, cpackMenuLinksVector); if ( cpackMenuLinksVector.size() % 2 != 0 ) { - cmCPackLogger(cmCPackLog::LOG_ERROR, - "CPACK_PACKAGE_EXECUTABLES should contain pairs of <executable> and " - "<icon name>." << std::endl); + cmCPackLogger( + cmCPackLog::LOG_ERROR, + "CPACK_PACKAGE_EXECUTABLES should contain pairs of <executable> and " + "<icon name>." << std::endl); return; } std::vector<std::string>::iterator it; |