summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-10 20:03:09 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-10 20:03:09 (GMT)
commit862f5df25c509e2df59d00597b0c4b4d14cf5eaa (patch)
tree79e19e06c0961f43690788cac9c2f23b4931a2cf /Source/cmCTest.cxx
parentc0161e9e57321f283fc88812779d627fb722a40a (diff)
downloadCMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.zip
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.gz
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.bz2
STYLE: Fix some style issues
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 87712fb..27433bb 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -690,7 +690,7 @@ bool cmCTest::OpenOutputFile(const std::string& path,
}
//----------------------------------------------------------------------
-bool cmCTest::AddIfExists(tm_SetOfStrings& files, const char* file)
+bool cmCTest::AddIfExists(SetOfStrings& files, const char* file)
{
if ( this->CTestFileExists(file) )
{
@@ -1160,9 +1160,9 @@ void cmCTest::EndXML(std::ostream& ostr)
//----------------------------------------------------------------------
int cmCTest::GenerateCTestNotesOutput(std::ostream& os,
- const cmCTest::tm_VectorOfStrings& files)
+ const cmCTest::VectorOfStrings& files)
{
- cmCTest::tm_VectorOfStrings::const_iterator it;
+ cmCTest::VectorOfStrings::const_iterator it;
os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
<< "<?xml-stylesheet type=\"text/xsl\" "
"href=\"Dart/Source/Server/XSL/Build.xsl "
@@ -1865,8 +1865,8 @@ void cmCTest::SetNotesFiles(const char* notes)
//----------------------------------------------------------------------
int cmCTest::ReadCustomConfigurationFileTree(const char* dir)
{
- tm_VectorOfStrings dirs;
- tm_VectorOfStrings ndirs;
+ VectorOfStrings dirs;
+ VectorOfStrings ndirs;
cmake cm;
cmGlobalGenerator gg;
gg.SetCMakeInstance(&cm);
@@ -1905,7 +1905,7 @@ int cmCTest::ReadCustomConfigurationFileTree(const char* dir)
//----------------------------------------------------------------------
void cmCTest::PopulateCustomVector(cmMakefile* mf, const char* def,
- tm_VectorOfStrings& vec)
+ VectorOfStrings& vec)
{
if ( !def)
{