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 /kplato/kptresourceappointmentsview.cc | |
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 'kplato/kptresourceappointmentsview.cc')
-rw-r--r-- | kplato/kptresourceappointmentsview.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kplato/kptresourceappointmentsview.cc b/kplato/kptresourceappointmentsview.cc index 3768ebef..4b6d7a44 100644 --- a/kplato/kptresourceappointmentsview.cc +++ b/kplato/kptresourceappointmentsview.cc @@ -36,8 +36,8 @@ namespace KPlato { -ResourceAppointmentsView::NodeItem::NodeItem(Node *t, TQListView *tqparent, bool highlight) - : DoubleListViewBase::MasterListItem(tqparent, t->name(), highlight), +ResourceAppointmentsView::NodeItem::NodeItem(Node *t, TQListView *parent, bool highlight) + : DoubleListViewBase::MasterListItem(parent, t->name(), highlight), node(t) { setFormat(0, 'f', 1); @@ -51,16 +51,16 @@ ResourceAppointmentsView::NodeItem::NodeItem(Node *t, TQListViewItem *p, bool hi //kdDebug()<<k_funcinfo<<endl; } -ResourceAppointmentsView::NodeItem::NodeItem(TQString text, TQListViewItem *tqparent, bool highlight) - : DoubleListViewBase::MasterListItem(tqparent, text, highlight), +ResourceAppointmentsView::NodeItem::NodeItem(TQString text, TQListViewItem *parent, bool highlight) + : DoubleListViewBase::MasterListItem(parent, text, highlight), node(0) { setFormat(0, 'f', 1); //kdDebug()<<k_funcinfo<<endl; } -ResourceAppointmentsView::NodeItem::NodeItem(TQString text, TQListView *tqparent, bool highlight) - : DoubleListViewBase::MasterListItem(tqparent, text, highlight), +ResourceAppointmentsView::NodeItem::NodeItem(TQString text, TQListView *parent, bool highlight) + : DoubleListViewBase::MasterListItem(parent, text, highlight), node(0) { setFormat(0, 'f', 1); @@ -68,8 +68,8 @@ ResourceAppointmentsView::NodeItem::NodeItem(TQString text, TQListView *tqparent } //------------------------------------------- -ResourceAppointmentsView::ResourceAppointmentsView(View *view, TQWidget *tqparent) - : DoubleListViewBase(tqparent), +ResourceAppointmentsView::ResourceAppointmentsView(View *view, TQWidget *parent) + : DoubleListViewBase(parent), m_mainview(view), m_resource(0), m_availItem(0), |