summaryrefslogtreecommitdiffstats
path: root/libkdenetwork/gpgmepp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdenetwork/gpgmepp')
-rw-r--r--libkdenetwork/gpgmepp/encryptionresult.cpp4
-rw-r--r--libkdenetwork/gpgmepp/encryptionresult.h2
-rw-r--r--libkdenetwork/gpgmepp/importresult.cpp4
-rw-r--r--libkdenetwork/gpgmepp/importresult.h2
-rw-r--r--libkdenetwork/gpgmepp/key.cpp8
-rw-r--r--libkdenetwork/gpgmepp/key.h8
-rw-r--r--libkdenetwork/gpgmepp/signingresult.cpp8
-rw-r--r--libkdenetwork/gpgmepp/signingresult.h4
-rw-r--r--libkdenetwork/gpgmepp/verificationresult.cpp8
-rw-r--r--libkdenetwork/gpgmepp/verificationresult.h4
10 files changed, 26 insertions, 26 deletions
diff --git a/libkdenetwork/gpgmepp/encryptionresult.cpp b/libkdenetwork/gpgmepp/encryptionresult.cpp
index cad520ba..f827ca83 100644
--- a/libkdenetwork/gpgmepp/encryptionresult.cpp
+++ b/libkdenetwork/gpgmepp/encryptionresult.cpp
@@ -94,8 +94,8 @@ std::vector<GpgME::InvalidRecipient> GpgME::EncryptionResult::invalidEncryptionK
-GpgME::InvalidRecipient::InvalidRecipient( EncryptionResult::Private * tqparent, unsigned int i )
- : d( tqparent ), idx( i )
+GpgME::InvalidRecipient::InvalidRecipient( EncryptionResult::Private * parent, unsigned int i )
+ : d( parent ), idx( i )
{
if ( d )
d->ref();
diff --git a/libkdenetwork/gpgmepp/encryptionresult.h b/libkdenetwork/gpgmepp/encryptionresult.h
index 0624779d..7267afc0 100644
--- a/libkdenetwork/gpgmepp/encryptionresult.h
+++ b/libkdenetwork/gpgmepp/encryptionresult.h
@@ -59,7 +59,7 @@ namespace GpgME {
class KDE_EXPORT InvalidRecipient {
friend class EncryptionResult;
- InvalidRecipient( EncryptionResult::Private * tqparent, unsigned int index );
+ InvalidRecipient( EncryptionResult::Private * parent, unsigned int index );
public:
InvalidRecipient();
InvalidRecipient( const InvalidRecipient & other );
diff --git a/libkdenetwork/gpgmepp/importresult.cpp b/libkdenetwork/gpgmepp/importresult.cpp
index 7acd35e4..3b4b713c 100644
--- a/libkdenetwork/gpgmepp/importresult.cpp
+++ b/libkdenetwork/gpgmepp/importresult.cpp
@@ -140,8 +140,8 @@ std::vector<GpgME::Import> GpgME::ImportResult::imports() const {
-GpgME::Import::Import( ImportResult::Private * tqparent, unsigned int i )
- : d( tqparent ), idx( i )
+GpgME::Import::Import( ImportResult::Private * parent, unsigned int i )
+ : d( parent ), idx( i )
{
if ( d )
d->ref();
diff --git a/libkdenetwork/gpgmepp/importresult.h b/libkdenetwork/gpgmepp/importresult.h
index eae58a5d..9a79b7b3 100644
--- a/libkdenetwork/gpgmepp/importresult.h
+++ b/libkdenetwork/gpgmepp/importresult.h
@@ -70,7 +70,7 @@ namespace GpgME {
class KDE_EXPORT Import {
friend class ImportResult;
- Import( ImportResult::Private * tqparent, unsigned int idx );
+ Import( ImportResult::Private * parent, unsigned int idx );
public:
Import();
Import( const Import & other );
diff --git a/libkdenetwork/gpgmepp/key.cpp b/libkdenetwork/gpgmepp/key.cpp
index d24a1d64..13cd0a7e 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::tqparent() const {
+ Key Subkey::parent() const {
return Key( d->key, true );
}
@@ -496,7 +496,7 @@ namespace GpgME {
return !d || !d->key || !d->uid;
}
- Key UserID::tqparent() const {
+ Key UserID::parent() const {
return Key( d->key, true );
}
@@ -669,7 +669,7 @@ namespace GpgME {
return !d || !d->key || !d->uid || !d->sig;
}
- UserID UserID::Signature::tqparent() const {
+ UserID UserID::Signature::parent() const {
return UserID( d->key, d->uid );
}
@@ -911,7 +911,7 @@ namespace GpgME {
return !d || !d->key || !d->uid || !d->sig || !d->nota;
}
- UserID::Signature UserID::Signature::Notation::tqparent() const {
+ UserID::Signature UserID::Signature::Notation::parent() const {
return Signature( d->key, d->uid, d->sig );
}
diff --git a/libkdenetwork/gpgmepp/key.h b/libkdenetwork/gpgmepp/key.h
index 9760e642..e143b47e 100644
--- a/libkdenetwork/gpgmepp/key.h
+++ b/libkdenetwork/gpgmepp/key.h
@@ -123,7 +123,7 @@ namespace GpgME {
bool isNull() const;
- Key tqparent() const;
+ Key parent() const;
const char * keyID() const;
const char * fingerprint() const;
@@ -171,7 +171,7 @@ namespace GpgME {
bool isNull() const;
- Key tqparent() const;
+ Key parent() const;
unsigned int numSignatures() const;
Signature signature( unsigned int index ) const;
@@ -213,7 +213,7 @@ namespace GpgME {
bool isNull() const;
- UserID tqparent() const;
+ UserID parent() const;
const char * signerKeyID() const;
@@ -270,7 +270,7 @@ namespace GpgME {
bool isNull() const;
- Signature tqparent() const;
+ Signature parent() const;
const char * name() const;
const char * value() const;
diff --git a/libkdenetwork/gpgmepp/signingresult.cpp b/libkdenetwork/gpgmepp/signingresult.cpp
index 6dab4d71..6996eef7 100644
--- a/libkdenetwork/gpgmepp/signingresult.cpp
+++ b/libkdenetwork/gpgmepp/signingresult.cpp
@@ -116,8 +116,8 @@ std::vector<GpgME::InvalidSigningKey> GpgME::SigningResult::invalidSigningKeys()
-GpgME::InvalidSigningKey::InvalidSigningKey( SigningResult::Private * tqparent, unsigned int i )
- : d( tqparent ), idx( i )
+GpgME::InvalidSigningKey::InvalidSigningKey( SigningResult::Private * parent, unsigned int i )
+ : d( parent ), idx( i )
{
if ( d )
d->ref();
@@ -165,8 +165,8 @@ GpgME::Error GpgME::InvalidSigningKey::reason() const {
-GpgME::CreatedSignature::CreatedSignature( SigningResult::Private * tqparent, unsigned int i )
- : d( tqparent ), idx( i )
+GpgME::CreatedSignature::CreatedSignature( SigningResult::Private * parent, unsigned int i )
+ : d( parent ), idx( i )
{
if ( d )
d->ref();
diff --git a/libkdenetwork/gpgmepp/signingresult.h b/libkdenetwork/gpgmepp/signingresult.h
index facf8979..202d09b4 100644
--- a/libkdenetwork/gpgmepp/signingresult.h
+++ b/libkdenetwork/gpgmepp/signingresult.h
@@ -64,7 +64,7 @@ namespace GpgME {
class KDE_EXPORT InvalidSigningKey {
friend class SigningResult;
- InvalidSigningKey( SigningResult::Private * tqparent, unsigned int index );
+ InvalidSigningKey( SigningResult::Private * parent, unsigned int index );
public:
InvalidSigningKey();
InvalidSigningKey( const InvalidSigningKey & other );
@@ -86,7 +86,7 @@ namespace GpgME {
class KDE_EXPORT CreatedSignature {
friend class SigningResult;
- CreatedSignature( SigningResult::Private * tqparent, unsigned int index );
+ CreatedSignature( SigningResult::Private * parent, unsigned int index );
public:
class Notation;
diff --git a/libkdenetwork/gpgmepp/verificationresult.cpp b/libkdenetwork/gpgmepp/verificationresult.cpp
index e4f905d8..757514d8 100644
--- a/libkdenetwork/gpgmepp/verificationresult.cpp
+++ b/libkdenetwork/gpgmepp/verificationresult.cpp
@@ -121,8 +121,8 @@ std::vector<GpgME::Signature> GpgME::VerificationResult::signatures() const {
-GpgME::Signature::Signature( VerificationResult::Private * tqparent, unsigned int i )
- : d( tqparent ), idx( i )
+GpgME::Signature::Signature( VerificationResult::Private * parent, unsigned int i )
+ : d( parent ), idx( i )
{
if ( d )
d->ref();
@@ -253,8 +253,8 @@ std::vector<GpgME::Signature::Notation> GpgME::Signature::notations() const {
}
-GpgME::Signature::Notation::Notation( VerificationResult::Private * tqparent, unsigned int sindex, unsigned int nindex )
- : d( tqparent ), sidx( sindex ), nidx( nindex )
+GpgME::Signature::Notation::Notation( VerificationResult::Private * parent, unsigned int sindex, unsigned int nindex )
+ : d( parent ), sidx( sindex ), nidx( nindex )
{
if ( d )
d->ref();
diff --git a/libkdenetwork/gpgmepp/verificationresult.h b/libkdenetwork/gpgmepp/verificationresult.h
index c5c14aab..edcd0278 100644
--- a/libkdenetwork/gpgmepp/verificationresult.h
+++ b/libkdenetwork/gpgmepp/verificationresult.h
@@ -59,7 +59,7 @@ namespace GpgME {
class KDE_EXPORT Signature {
friend class VerificationResult;
- Signature( VerificationResult::Private * tqparent, unsigned int index );
+ Signature( VerificationResult::Private * parent, unsigned int index );
public:
class Notation;
@@ -118,7 +118,7 @@ namespace GpgME {
class KDE_EXPORT Signature::Notation {
friend class Signature;
- Notation( VerificationResult::Private * tqparent, unsigned int sindex, unsigned int nindex );
+ Notation( VerificationResult::Private * parent, unsigned int sindex, unsigned int nindex );
public:
Notation();
Notation( const Notation & other );