diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 12:00:33 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 12:00:33 -0600 | 
| commit | 7e66d7c3611d907ea28b140281b472bb1c406be6 (patch) | |
| tree | d0512bf457c2bfe012f455b42ab78651afb81438 /buildtools/lib/parsers/autotools/autotoolsast.cpp | |
| parent | c3b301575a98e4c3505ad95534d6192b65539dab (diff) | |
| download | tdevelop-7e66d7c3611d907ea28b140281b472bb1c406be6.tar.gz tdevelop-7e66d7c3611d907ea28b140281b472bb1c406be6.zip | |
Remove additional unneeded tq method conversions
Diffstat (limited to 'buildtools/lib/parsers/autotools/autotoolsast.cpp')
| -rw-r--r-- | buildtools/lib/parsers/autotools/autotoolsast.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/buildtools/lib/parsers/autotools/autotoolsast.cpp b/buildtools/lib/parsers/autotools/autotoolsast.cpp index 659fe47f..0512be78 100644 --- a/buildtools/lib/parsers/autotools/autotoolsast.cpp +++ b/buildtools/lib/parsers/autotools/autotoolsast.cpp @@ -28,7 +28,7 @@ namespace AutoTools {  AST::~AST()  { -	for (TQValueList<AST*>::iterator it = m_tqchildren.begin(); it != m_tqchildren.end(); ++it) +	for (TQValueList<AST*>::iterator it = m_children.begin(); it != m_children.end(); ++it)  	{  		AST *node = *it;  		delete node; @@ -37,13 +37,13 @@ AST::~AST()  void AST::addChildAST(AST *node)  { -	m_tqchildren.append(node); +	m_children.append(node);  }  void AST::writeBack(TQString &buffer)  { -	for (TQValueList<AST*>::const_iterator it = m_tqchildren.constBegin(); -	     it != m_tqchildren.constEnd(); ++it) +	for (TQValueList<AST*>::const_iterator it = m_children.constBegin(); +	     it != m_children.constEnd(); ++it)  	{  		if (*it)  			(*it)->writeBack(buffer); @@ -60,12 +60,12 @@ TQString AST::indentation()  bool AST::hasChildren() const  { -	return !m_tqchildren.isEmpty(); +	return !m_children.isEmpty();  } -TQValueList<AST*> AST::tqchildren() const +TQValueList<AST*> AST::children() const  { -	return m_tqchildren; +	return m_children;  }  //ProjectAST | 
