[cmake-commits] hoffman committed cmLocalGenerator.cxx 1.174 1.175 cmLocalVisualStudio7Generator.cxx 1.170 1.171 cmLocalXCodeGenerator.cxx 1.3 1.4 cmTarget.cxx 1.120 1.121

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Feb 17 08:46:27 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv5996/Source

Modified Files:
	cmLocalGenerator.cxx cmLocalVisualStudio7Generator.cxx 
	cmLocalXCodeGenerator.cxx cmTarget.cxx 
Log Message:
STYLE: fix line length issues


Index: cmLocalVisualStudio7Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio7Generator.cxx,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -d -r1.170 -r1.171
--- cmLocalVisualStudio7Generator.cxx	16 Feb 2007 21:45:47 -0000	1.170
+++ cmLocalVisualStudio7Generator.cxx	17 Feb 2007 13:46:23 -0000	1.171
@@ -1965,7 +1965,8 @@
 
   
   // return the source name for the object file
-std::string cmLocalVisualStudio7Generator::GetSourceObjectName(cmSourceFile& sf )
+std::string 
+cmLocalVisualStudio7Generator::GetSourceObjectName(cmSourceFile& sf )
 {
   std::string ret = sf.GetSourceName();
   std::string::size_type pos = ret.find("/");

Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- cmLocalGenerator.cxx	17 Feb 2007 13:38:41 -0000	1.174
+++ cmLocalGenerator.cxx	17 Feb 2007 13:46:22 -0000	1.175
@@ -2404,7 +2404,8 @@
                                                  std::vector<std::string>& 
                                                  )
 {
-  cmSystemTools::Error("GetTargetObjectFileDirectories called on cmLocalGenerator");
+  cmSystemTools::Error("GetTargetObjectFileDirectories"
+                       " called on cmLocalGenerator");
 }
 
 std::string cmLocalGenerator::GetSourceObjectName(cmSourceFile& sf)

Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -d -r1.120 -r1.121
--- cmTarget.cxx	16 Feb 2007 21:12:16 -0000	1.120
+++ cmTarget.cxx	17 Feb 2007 13:46:24 -0000	1.121
@@ -1195,7 +1195,8 @@
       {
       cmSourceFile* sf = *s;
       const char* lang = this->Makefile->GetLocalGenerator()->
-        GetGlobalGenerator()->GetLanguageFromExtension(sf->GetSourceExtension().c_str());
+        GetGlobalGenerator()->
+        GetLanguageFromExtension(sf->GetSourceExtension().c_str());
       std::string lookupObj = objExtensionLookup1 + lang;
       lookupObj += objExtensionLookup2;
       const char* obj = this->Makefile->GetDefinition(lookupObj.c_str());

Index: cmLocalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalXCodeGenerator.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cmLocalXCodeGenerator.cxx	16 Feb 2007 21:12:16 -0000	1.3
+++ cmLocalXCodeGenerator.cxx	17 Feb 2007 13:46:24 -0000	1.4
@@ -18,7 +18,8 @@
                                std::vector<std::string>& 
                                dirs)
 {
-  cmGlobalXCodeGenerator* g = (cmGlobalXCodeGenerator*)this->GetGlobalGenerator();
+  cmGlobalXCodeGenerator* g = 
+    (cmGlobalXCodeGenerator*)this->GetGlobalGenerator();
   g->SetCurrentLocalGenerator(this);
   g->GetTargetObjectFileDirectories(target,
                                     dirs);



More information about the Cmake-commits mailing list