diff options
Diffstat (limited to 'Source/CPack/cmCPackGenerators.cxx')
-rw-r--r-- | Source/CPack/cmCPackGenerators.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/CPack/cmCPackGenerators.cxx b/Source/CPack/cmCPackGenerators.cxx index cf83f20..7713a00 100644 --- a/Source/CPack/cmCPackGenerators.cxx +++ b/Source/CPack/cmCPackGenerators.cxx @@ -9,8 +9,8 @@ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ @@ -39,7 +39,7 @@ cmCPackGenerators::cmCPackGenerators() cmCPackGenerators::~cmCPackGenerators() { std::vector<cmCPackGenericGenerator*>::iterator it; - for ( it = m_Generators.begin(); it != m_Generators.end(); ++ it ) + for ( it = this->Generators.begin(); it != this->Generators.end(); ++ it ) { delete *it; } @@ -53,8 +53,8 @@ cmCPackGenericGenerator* cmCPackGenerators::NewGenerator(const char* name) { return 0; } - m_Generators.push_back(gen); - gen->SetLogger(m_Logger); + this->Generators.push_back(gen); + gen->SetLogger(this->Logger); return gen; } @@ -67,8 +67,8 @@ cmCPackGenericGenerator* cmCPackGenerators::NewGeneratorInternal( return 0; } cmCPackGenerators::t_GeneratorCreatorsMap::iterator it - = m_GeneratorCreators.find(name); - if ( it == m_GeneratorCreators.end() ) + = this->GeneratorCreators.find(name); + if ( it == this->GeneratorCreators.end() ) { return 0; } @@ -81,9 +81,9 @@ void cmCPackGenerators::RegisterGenerator(const char* name, { if ( !name || !createGenerator ) { - cmCPack_Log(m_Logger, cmCPackLog::LOG_ERROR, "Cannot register generator" - << std::endl); + cmCPack_Log(this->Logger, cmCPackLog::LOG_ERROR, + "Cannot register generator" << std::endl); return; } - m_GeneratorCreators[name] = createGenerator; + this->GeneratorCreators[name] = createGenerator; } |