diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kexi/formeditor/objecttreeview.h | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/formeditor/objecttreeview.h')
-rw-r--r-- | kexi/formeditor/objecttreeview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/formeditor/objecttreeview.h b/kexi/formeditor/objecttreeview.h index 46266144..b625c0ad 100644 --- a/kexi/formeditor/objecttreeview.h +++ b/kexi/formeditor/objecttreeview.h @@ -31,7 +31,7 @@ class Form; class KFORMEDITOR_EXPORT ObjectTreeViewItem : public KListViewItem { public: - ObjectTreeViewItem(ObjectTreeViewItem *tqparent, ObjectTreeItem *item); + ObjectTreeViewItem(ObjectTreeViewItem *parent, ObjectTreeItem *item); ObjectTreeViewItem(KListView *list, ObjectTreeItem *item=0); virtual ~ObjectTreeViewItem(); @@ -70,7 +70,7 @@ class KFORMEDITOR_EXPORT ObjectTreeView : public KListView TQ_OBJECT public: - ObjectTreeView(TQWidget *tqparent=0, const char *name=0, bool tabStop = false); + ObjectTreeView(TQWidget *parent=0, const char *name=0, bool tabStop = false); virtual ~ObjectTreeView(); virtual TQSize tqsizeHint() const; @@ -89,7 +89,7 @@ class KFORMEDITOR_EXPORT ObjectTreeView : public KListView It is added to current selection if \a add is true. */ void setSelectedWidget(TQWidget *w, bool add=false); - /*! Adds the ObjectTreeItem \a item in the list, with the appropriate tqparent. */ + /*! Adds the ObjectTreeItem \a item in the list, with the appropriate parent. */ void addItem(ObjectTreeItem *item); /*! Removess the ObjectTreeItem \a item from the list. */ @@ -113,7 +113,7 @@ class KFORMEDITOR_EXPORT ObjectTreeView : public KListView protected: //! Internal function to fill the list. - ObjectTreeViewItem* loadTree(ObjectTreeItem *item, ObjectTreeViewItem *tqparent); + ObjectTreeViewItem* loadTree(ObjectTreeItem *item, ObjectTreeViewItem *parent); //! \return The item whose name is \a name. ObjectTreeViewItem* findItem(const TQString &name); |