diff options
Diffstat (limited to 'certmanager/lib/backends/chiasmus/obtainkeysjob.cpp')
-rw-r--r-- | certmanager/lib/backends/chiasmus/obtainkeysjob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/certmanager/lib/backends/chiasmus/obtainkeysjob.cpp b/certmanager/lib/backends/chiasmus/obtainkeysjob.cpp index 497a5a54d..eccdf9219 100644 --- a/certmanager/lib/backends/chiasmus/obtainkeysjob.cpp +++ b/certmanager/lib/backends/chiasmus/obtainkeysjob.cpp @@ -114,13 +114,13 @@ void Kleo::ObtainKeysJob::slotPerform( bool async ) { slotPerform( false ); } -void Kleo::ObtainKeysJob::showErrorDialog( TQWidget * tqparent, const TQString & caption ) const { +void Kleo::ObtainKeysJob::showErrorDialog( TQWidget * parent, const TQString & caption ) const { if ( !mError ) return; if ( mError.isCanceled() ) return; const TQString msg = TQString::fromUtf8( mError.asString() ); - KMessageBox::error( tqparent, msg, caption ); + KMessageBox::error( parent, msg, caption ); } #include "obtainkeysjob.moc" |