diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-16 02:40:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-16 02:40:35 +0000 |
commit | bab40890696ec68c337dc290880423a0602b83c7 (patch) | |
tree | 6ba03f720b1fa88235ba339e7aedb4455430357e /kcert | |
parent | f7e71d47719ab6094cf4a9fafffa5ea351973522 (diff) | |
download | tdelibs-bab40890696ec68c337dc290880423a0602b83c7.tar.gz tdelibs-bab40890696ec68c337dc290880423a0602b83c7.zip |
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
Diffstat (limited to 'kcert')
-rw-r--r-- | kcert/kcertpart.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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<KPKCS12Item*>(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; } |