diff options
author | Brad King <brad.king@kitware.com> | 2008-01-02 20:55:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-02 20:55:18 (GMT) |
commit | 2625b0498b42d55f2bbb6adea3df1f0b9cf9f165 (patch) | |
tree | a66ff49806b88ab2a13c91c4b52d93540ffb8bb1 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 62ff2befcc01eabefd2fbddfccdc2fba17640d0e (diff) | |
download | CMake-2625b0498b42d55f2bbb6adea3df1f0b9cf9f165.zip CMake-2625b0498b42d55f2bbb6adea3df1f0b9cf9f165.tar.gz CMake-2625b0498b42d55f2bbb6adea3df1f0b9cf9f165.tar.bz2 |
STYLE: Fixed line-too-long.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 5f755a6..31b3ab4 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -77,9 +77,11 @@ std::string cmGlobalVisualStudio8Generator::GetUserMacrosDirectory() // Some VS8 sp0 versions cannot run macros. // See http://support.microsoft.com/kb/928209 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 = - "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\InstalledProducts\\KB926748;"; + "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\" + "InstalledProducts\\KB926748;"; std::string vc8sp1; if (!cmSystemTools::ReadRegistryValue(vc8sp1Registry, vc8sp1) && !cmSystemTools::ReadRegistryValue(vc8exSP1Registry, vc8sp1)) |