diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 12:00:33 -0600 | 
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-23 19:35:16 +0200 | 
| commit | ec049c7c32d50faf317b13d5c844a19978881fc3 (patch) | |
| tree | ca9b445d4cba887b9161fddd3ba714e1d7b5060b /buildtools/lib/parsers/autotools/autotoolsast.h | |
| parent | 1c082a5ba751ddd4edd36bb0061462f9a999f88d (diff) | |
| download | tdevelop-ec049c7c32d50faf317b13d5c844a19978881fc3.tar.gz tdevelop-ec049c7c32d50faf317b13d5c844a19978881fc3.zip | |
Remove additional unneeded tq method conversions
(cherry picked from commit 7e66d7c3611d907ea28b140281b472bb1c406be6)
Diffstat (limited to 'buildtools/lib/parsers/autotools/autotoolsast.h')
| -rw-r--r-- | buildtools/lib/parsers/autotools/autotoolsast.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/buildtools/lib/parsers/autotools/autotoolsast.h b/buildtools/lib/parsers/autotools/autotoolsast.h index e690baa4..768e3e07 100644 --- a/buildtools/lib/parsers/autotools/autotoolsast.h +++ b/buildtools/lib/parsers/autotools/autotoolsast.h @@ -37,7 +37,7 @@ namespace AutoTools   * AST node.   * This is the base class. Objects of this type are not created by the parser.   * - * Each AST node holds the list of its tqchildren which are always deleted in the + * Each AST node holds the list of its children which are always deleted in the   * destructor. This way, it's possible call delete for only root AST node and   * others will be deleted automatically.   * @@ -85,20 +85,20 @@ public:  	/** @return The indentation string based on node depth.*/  	virtual TQString indentation(); -	//! \return true if this AST has tqchildren +	//! \return true if this AST has children  	bool hasChildren() const;  	/** -	 * Get the tqchildren of this ast +	 * Get the children of this ast  	 * \return the list of this ast's childre  	 */ -	TQValueList<AST*> tqchildren() const; +	TQValueList<AST*> children() const;  protected:  	NodeType m_nodeType; -	TQValueList<AST*> m_tqchildren; +	TQValueList<AST*> m_children;  private:  	int m_depth; | 
