summaryrefslogtreecommitdiffstats
path: root/src/projectmanager.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:40 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-08-01 04:34:45 +0200
commit91ef45e89ef1bb0994d49220556e514d608a664c (patch)
tree98e17373a0765a7610021cb90e8668a6eb8ab7fc /src/projectmanager.h
parente72829f3fa8d309ba0c3f64034c14ce5eecd8590 (diff)
downloadktechlab-91ef45e89ef1bb0994d49220556e514d608a664c.tar.gz
ktechlab-91ef45e89ef1bb0994d49220556e514d608a664c.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 1fc61c6e1d0a2b34f7b1d0de181bb4e6f954a8c2)
Diffstat (limited to 'src/projectmanager.h')
-rw-r--r--src/projectmanager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/projectmanager.h b/src/projectmanager.h
index 33d239b..54f873f 100644
--- a/src/projectmanager.h
+++ b/src/projectmanager.h
@@ -160,11 +160,11 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
void setILVItem( ILVItem * ilvItem );
/**
- * Adds the child to the list of tqchildren, and creates an ILVItem for it
+ * Adds the child to the list of children, and creates an ILVItem for it
* in the project tree view.
*/
void addChild( ProjectItem * child );
- ProjectItemList tqchildren() const { return m_tqchildren; }
+ ProjectItemList children() const { return m_children; }
void setName( const TQString & name );
TQString name() const { return m_name; }
@@ -180,12 +180,12 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
OutputType outputType() const;
/**
- * Returns a list of output urls of the tqchildren and their recursively
- * contained tqchildren (does not include the url for this project item).
+ * Returns a list of output urls of the children and their recursively
+ * contained children (does not include the url for this project item).
* @param types An OR'ed list of ProjectItem::Type values for the
- * tqchildren.
+ * children.
* @param outputTypes An OR'ed list of ProjectItem::OutputType values
- * for the tqchildren.
+ * for the children.
*/
KURL::List childOutputURLs( unsigned types = AllTypes, unsigned outputTypes = AllOutputs ) const;
@@ -210,7 +210,7 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
virtual TQString microID() const;
/**
- * Searches this item and the tqchildren for an item for the given url,
+ * Searches this item and the children for an item for the given url,
* return null if no such item could be found.
*/
ProjectItem * findItem( const KURL & url );
@@ -222,7 +222,7 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
KURL m_url;
TQString m_name;
- ProjectItemList m_tqchildren;
+ ProjectItemList m_children;
Type m_type;
KTechlab * p_ktechlab;