diff options
Diffstat (limited to 'certmanager/certmanager.cpp')
-rw-r--r-- | certmanager/certmanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/certmanager.cpp b/certmanager/certmanager.cpp index 1bffa97ce..86ee531a3 100644 --- a/certmanager/certmanager.cpp +++ b/certmanager/certmanager.cpp @@ -267,7 +267,7 @@ void CertManager::createActions() { actionCollection(), "view_stop_operations" ); action->setEnabled( false ); - (void) new TDEAction( i18n("New Key Pair..."), "filenew", 0, + (void) new TDEAction( i18n("New Key Pair..."), "document-new", 0, TQT_TQOBJECT(this), TQT_SLOT(newCertificate()), actionCollection(), "file_new_certificate" ); @@ -298,7 +298,7 @@ void CertManager::createActions() { connectEnableOperationSignal( this, mExtendCertificateAction ); #endif - mDeleteCertificateAction = new TDEAction( i18n("Delete"), "editdelete", Key_Delete, + mDeleteCertificateAction = new TDEAction( i18n("Delete"), "edit-delete", Key_Delete, TQT_TQOBJECT(this), TQT_SLOT(slotDeleteCertificate()), actionCollection(), "edit_delete_certificate" ); connectEnableOperationSignal( TQT_TQOBJECT(this), mDeleteCertificateAction ); @@ -1082,7 +1082,7 @@ void CertManager::slotDeleteCertificate() { if ( KMessageBox::warningContinueCancelList( this, msg, keyDisplayNames, i18n( "Delete Certificates" ), - KGuiItem( i18n( "Delete" ), "editdelete" ), + KGuiItem( i18n( "Delete" ), "edit-delete" ), "ConfirmDeleteCert", KMessageBox::Dangerous ) != KMessageBox::Continue ) return; |