summaryrefslogtreecommitdiffstats
path: root/libkdenetwork/gpgmepp/key.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdenetwork/gpgmepp/key.cpp')
-rw-r--r--libkdenetwork/gpgmepp/key.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdenetwork/gpgmepp/key.cpp b/libkdenetwork/gpgmepp/key.cpp
index cf70aaf0..d24a1d64 100644
--- a/libkdenetwork/gpgmepp/key.cpp
+++ b/libkdenetwork/gpgmepp/key.cpp
@@ -348,7 +348,7 @@ namespace GpgME {
return !d || !d->key || !d->subkey;
}
- Key Subkey::parent() const {
+ Key Subkey::tqparent() const {
return Key( d->key, true );
}
@@ -496,7 +496,7 @@ namespace GpgME {
return !d || !d->key || !d->uid;
}
- Key UserID::parent() const {
+ Key UserID::tqparent() const {
return Key( d->key, true );
}
@@ -669,7 +669,7 @@ namespace GpgME {
return !d || !d->key || !d->uid || !d->sig;
}
- UserID UserID::Signature::parent() const {
+ UserID UserID::Signature::tqparent() const {
return UserID( d->key, d->uid );
}
@@ -733,7 +733,7 @@ namespace GpgME {
return d->sig ? d->sig->sig_class : 0 ;
}
- UserID::Signature::Status UserID::Signature::status() const {
+ UserID::Signature::tqStatus UserID::Signature::status() const {
if ( !d->sig )
return GeneralError;
@@ -911,7 +911,7 @@ namespace GpgME {
return !d || !d->key || !d->uid || !d->sig || !d->nota;
}
- UserID::Signature UserID::Signature::Notation::parent() const {
+ UserID::Signature UserID::Signature::Notation::tqparent() const {
return Signature( d->key, d->uid, d->sig );
}