diff options
Diffstat (limited to 'libkdenetwork/gpgmepp/importresult.cpp')
-rw-r--r-- | libkdenetwork/gpgmepp/importresult.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkdenetwork/gpgmepp/importresult.cpp b/libkdenetwork/gpgmepp/importresult.cpp index d23c195e3..7acd35e4c 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 * parent, unsigned int i ) - : d( parent ), idx( i ) +GpgME::Import::Import( ImportResult::Private * tqparent, unsigned int i ) + : d( tqparent ), idx( i ) { if ( d ) d->ref(); @@ -190,7 +190,7 @@ GpgME::Error GpgME::Import::error() const { return isNull() ? 0 : d->imports[idx]->result ; } -GpgME::Import::Status GpgME::Import::status() const { +GpgME::Import::tqStatus GpgME::Import::status() const { if ( isNull() ) return Unknown; unsigned int s = d->imports[idx]->status; @@ -200,5 +200,5 @@ GpgME::Import::Status GpgME::Import::status() const { if ( s & GPGME_IMPORT_SIG ) result |= NewSignatures; if ( s & GPGME_IMPORT_SUBKEY ) result |= NewSubkeys; if ( s & GPGME_IMPORT_SECRET ) result |= ContainedSecretKey; - return static_cast<Status>( result ); + return static_cast<tqStatus>( result ); } |