summaryrefslogtreecommitdiffstats
path: root/quanta/treeviews/projecttreeview.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/treeviews/projecttreeview.h')
-rw-r--r--quanta/treeviews/projecttreeview.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/quanta/treeviews/projecttreeview.h b/quanta/treeviews/projecttreeview.h
index dafa3a2f..1e290328 100644
--- a/quanta/treeviews/projecttreeview.h
+++ b/quanta/treeviews/projecttreeview.h
@@ -28,7 +28,7 @@ class ProjectList;
class ProjectTreeViewItem : public BaseTreeViewItem {
public:
- ProjectTreeViewItem( KFileTreeViewItem *tqparent, KFileItem* item, KFileTreeBranch *brnch );
+ ProjectTreeViewItem( KFileTreeViewItem *parent, KFileItem* item, KFileTreeBranch *brnch );
/** makes document root italics */
void paintCell(TQPainter *p, const TQColorGroup &cg, int column, int width, int align);
};
@@ -36,12 +36,12 @@ public:
class ProjectTreeBranch : public BaseTreeBranch {
public:
- ProjectTreeBranch(KFileTreeView *tqparent, const KURL& url,
+ ProjectTreeBranch(KFileTreeView *parent, const KURL& url,
const TQString& name, const TQPixmap& pix,
bool showHidden = false, KFileTreeViewItem *branchRoot = 0L);
/** check for CVS and visible*/
- virtual KFileTreeViewItem* createTreeViewItem(KFileTreeViewItem *tqparent,
+ virtual KFileTreeViewItem* createTreeViewItem(KFileTreeViewItem *parent,
KFileItem *fileItem );
/** only files in list will be shown */
@@ -61,10 +61,10 @@ public:
* the parameters are only used at the first call to create the class
*
*/
- static ProjectTreeView* const ref(TQWidget *tqparent = 0L, const char *name = 0L)
+ static ProjectTreeView* const ref(TQWidget *parent = 0L, const char *name = 0L)
{
static ProjectTreeView *m_ref;
- if (!m_ref) m_ref = new ProjectTreeView(tqparent, name);
+ if (!m_ref) m_ref = new ProjectTreeView(parent, name);
return m_ref;
}
@@ -116,7 +116,7 @@ private:
* If you need the class use ProjectTreeView::ref() for
* construction and reference
*/
- ProjectTreeView(TQWidget *tqparent, const char *name);
+ ProjectTreeView(TQWidget *parent, const char *name);
ProjectTreeBranch *m_projectDir;
KPopupMenu *m_fileMenu;