From bab40890696ec68c337dc290880423a0602b83c7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 16 Jan 2011 02:40:35 +0000 Subject: Finished remaining porting to new TQt API git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1214736 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcert/kcertpart.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kcert/kcertpart.cc') diff --git a/kcert/kcertpart.cc b/kcert/kcertpart.cc index 9e4bf14d3..adef41c28 100644 --- a/kcert/kcertpart.cc +++ b/kcert/kcertpart.cc @@ -784,7 +784,7 @@ void KCertPart::slotSelectionChanged(TQListViewItem *x) { KPKCS12Item *p12i = dynamic_cast(x); _p12 = NULL; _ca = NULL; - if (x && x->parent() == _parentCA) { + if (x && x->tqparent() == _parentCA) { if (!x5i) { return; } @@ -797,7 +797,7 @@ void KCertPart::slotSelectionChanged(TQListViewItem *x) { _save->setEnabled(true); _curName = x5i->_prettyName; displayCACert(_ca); - } else if (x && x->parent() == NULL && x->rtti() == 1) { + } else if (x && x->tqparent() == NULL && x->rtti() == 1) { if (!x5i) { return; } @@ -810,7 +810,7 @@ void KCertPart::slotSelectionChanged(TQListViewItem *x) { _save->setEnabled(false); _curName = x5i->_prettyName; displayCACert(_ca); - } else if (x && x->parent() == _parentP12) { + } else if (x && x->tqparent() == _parentP12) { if (!p12i) { return; } -- cgit v1.2.3