Browse Source

STYLE: Fixed line-too-long.

Brad King 18 years ago
parent
commit
2625b0498b
1 changed files with 4 additions and 2 deletions
  1. 4 2
      Source/cmGlobalVisualStudio8Generator.cxx

+ 4 - 2
Source/cmGlobalVisualStudio8Generator.cxx

@@ -77,9 +77,11 @@ std::string cmGlobalVisualStudio8Generator::GetUserMacrosDirectory()
   // Some VS8 sp0 versions cannot run macros.
   // Some VS8 sp0 versions cannot run macros.
   // See http://support.microsoft.com/kb/928209
   // See http://support.microsoft.com/kb/928209
   const char* vc8sp1Registry =
   const char* vc8sp1Registry =
-    "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\InstalledProducts\\KB926601;";
+    "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\"
+    "InstalledProducts\\KB926601;";
   const char* vc8exSP1Registry =
   const char* vc8exSP1Registry =
-    "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\InstalledProducts\\KB926748;";
+    "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\"
+    "InstalledProducts\\KB926748;";
   std::string vc8sp1;
   std::string vc8sp1;
   if (!cmSystemTools::ReadRegistryValue(vc8sp1Registry, vc8sp1) &&
   if (!cmSystemTools::ReadRegistryValue(vc8sp1Registry, vc8sp1) &&
       !cmSystemTools::ReadRegistryValue(vc8exSP1Registry, vc8sp1))
       !cmSystemTools::ReadRegistryValue(vc8exSP1Registry, vc8sp1))