Browse Source

ENH: fix line length

Bill Hoffman 18 years ago
parent
commit
771997c556
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/CPack/cmCPackNSISGenerator.cxx

+ 2 - 1
Source/CPack/cmCPackNSISGenerator.cxx

@@ -338,7 +338,8 @@ void cmCPackNSISGenerator::CreateMenuLinks( cmOStringStream& str,
     else
       {
       str << "  WriteINIStr \"$SMPROGRAMS\\$STARTMENU_FOLDER\\"
-          << linkName << ".url\" \"InternetShortcut\" \"URL\" \"" << sourceName << "\""
+          << linkName << ".url\" \"InternetShortcut\" \"URL\" \"" 
+          << sourceName << "\""
           << std::endl;
       deleteStr << "  Delete \"$SMPROGRAMS\\$MUI_TEMP\\" << linkName
                 << ".url\"" << std::endl;