summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-01 13:51:28 (GMT)
committerBrad King <brad.king@kitware.com>2006-09-01 13:51:28 (GMT)
commit57eb30087f182ce42716e50f42631805c93f9028 (patch)
tree6ee908983d85ad9cea9eca4f90420502c73769b5
parent6932bbd8d600983a63ca99a22498db8df7402193 (diff)
downloadCMake-57eb30087f182ce42716e50f42631805c93f9028.zip
CMake-57eb30087f182ce42716e50f42631805c93f9028.tar.gz
CMake-57eb30087f182ce42716e50f42631805c93f9028.tar.bz2
STYLE: Fixed line-too-long warning.
-rw-r--r--Source/cmBuildNameCommand.h2
-rw-r--r--Source/cmExecProgramCommand.h2
-rw-r--r--Source/cmGlobalGenerator.cxx3
-rw-r--r--Source/cmInstallFilesCommand.h2
-rw-r--r--Source/cmInstallProgramsCommand.h2
-rw-r--r--Source/cmInstallTargetsCommand.h2
-rw-r--r--Source/cmLinkLibrariesCommand.h2
-rw-r--r--Source/cmMakeDirectoryCommand.h2
-rw-r--r--Source/cmRemoveCommand.h2
-rw-r--r--Source/cmSubdirCommand.h2
-rw-r--r--Source/cmSubdirDependsCommand.h2
-rw-r--r--Source/cmVTKMakeInstantiatorCommand.h2
-rw-r--r--Source/cmVTKWrapJavaCommand.h2
-rw-r--r--Source/cmVTKWrapPythonCommand.h2
-rw-r--r--Source/cmVTKWrapTclCommand.h2
15 files changed, 16 insertions, 15 deletions
diff --git a/Source/cmBuildNameCommand.h b/Source/cmBuildNameCommand.h
index 174f1f9..b7f29c5 100644
--- a/Source/cmBuildNameCommand.h
+++ b/Source/cmBuildNameCommand.h
@@ -72,7 +72,7 @@ public:
"CMAKE_SYSTEM and CMAKE_CXX_COMPILER variables.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmExecProgramCommand.h b/Source/cmExecProgramCommand.h
index 64d2f51..4836337 100644
--- a/Source/cmExecProgramCommand.h
+++ b/Source/cmExecProgramCommand.h
@@ -88,7 +88,7 @@ public:
;
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 1b72f40..67cd0c1 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1459,7 +1459,8 @@ void cmGlobalGenerator::CreateDefaultGlobalTargets(cmTargets* targets)
if(this->InstallTargetEnabled)
{
std::string cmd;
- cpackCommandLines.erase(cpackCommandLines.begin(), cpackCommandLines.end());
+ cpackCommandLines.erase(cpackCommandLines.begin(),
+ cpackCommandLines.end());
singleLine.erase(singleLine.begin(), singleLine.end());
depends.erase(depends.begin(), depends.end());
if ( this->GetPreinstallTargetName() )
diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h
index 826e5ed..51a87ef 100644
--- a/Source/cmInstallFilesCommand.h
+++ b/Source/cmInstallFilesCommand.h
@@ -94,7 +94,7 @@ public:
"is stored in the variable CMAKE_INSTALL_PREFIX.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h
index e922af2..ef63c27 100644
--- a/Source/cmInstallProgramsCommand.h
+++ b/Source/cmInstallProgramsCommand.h
@@ -90,7 +90,7 @@ public:
"is stored in the variable CMAKE_INSTALL_PREFIX.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmInstallTargetsCommand.h b/Source/cmInstallTargetsCommand.h
index ec1d7c8..0ea9035 100644
--- a/Source/cmInstallTargetsCommand.h
+++ b/Source/cmInstallTargetsCommand.h
@@ -72,7 +72,7 @@ public:
"(Windows DLL), the files will be copied to that directory.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmLinkLibrariesCommand.h b/Source/cmLinkLibrariesCommand.h
index 2f33689..cd9a34f 100644
--- a/Source/cmLinkLibrariesCommand.h
+++ b/Source/cmLinkLibrariesCommand.h
@@ -75,7 +75,7 @@ public:
"type of build.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmMakeDirectoryCommand.h b/Source/cmMakeDirectoryCommand.h
index 7380bcb..951b3c0 100644
--- a/Source/cmMakeDirectoryCommand.h
+++ b/Source/cmMakeDirectoryCommand.h
@@ -78,7 +78,7 @@ public:
"care.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmRemoveCommand.h b/Source/cmRemoveCommand.h
index b7ca5a7..7062770 100644
--- a/Source/cmRemoveCommand.h
+++ b/Source/cmRemoveCommand.h
@@ -73,7 +73,7 @@ public:
"(e.g. semicolon separated list). VALUE is expanded.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmSubdirCommand.h b/Source/cmSubdirCommand.h
index 4ec3da9..fe7c392 100644
--- a/Source/cmSubdirCommand.h
+++ b/Source/cmSubdirCommand.h
@@ -80,7 +80,7 @@ public:
"top level project or be built each time make is run from the top.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h
index f178443..6e1986d 100644
--- a/Source/cmSubdirDependsCommand.h
+++ b/Source/cmSubdirDependsCommand.h
@@ -67,7 +67,7 @@ public:
"parallel builds correctly. This functionality is now automatic.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmVTKMakeInstantiatorCommand.h b/Source/cmVTKMakeInstantiatorCommand.h
index a8ed52a..6eefed9 100644
--- a/Source/cmVTKMakeInstantiatorCommand.h
+++ b/Source/cmVTKMakeInstantiatorCommand.h
@@ -75,7 +75,7 @@ public:
"C++ code.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmVTKWrapJavaCommand.h b/Source/cmVTKWrapJavaCommand.h
index 6ffaa52..419e399 100644
--- a/Source/cmVTKWrapJavaCommand.h
+++ b/Source/cmVTKWrapJavaCommand.h
@@ -77,7 +77,7 @@ public:
"Create Java wrappers for VTK classes.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmVTKWrapPythonCommand.h b/Source/cmVTKWrapPythonCommand.h
index 8e58b24..b9f4e69 100644
--- a/Source/cmVTKWrapPythonCommand.h
+++ b/Source/cmVTKWrapPythonCommand.h
@@ -77,7 +77,7 @@ public:
"Create Python wrappers for VTK classes.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;
diff --git a/Source/cmVTKWrapTclCommand.h b/Source/cmVTKWrapTclCommand.h
index 85c442a..4fa061e 100644
--- a/Source/cmVTKWrapTclCommand.h
+++ b/Source/cmVTKWrapTclCommand.h
@@ -79,7 +79,7 @@ public:
"Create Tcl wrappers for VTK classes.";
}
- /** This command is only kept for compatibility with older CMake versions. */
+ /** This command is kept for compatibility with older CMake versions. */
virtual bool IsDiscouraged()
{
return true;