summaryrefslogtreecommitdiffstats
path: root/certmanager
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:58 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:58 -0500
commit58964048b37c52bbb841d7ec9386a75d9bf8fbc7 (patch)
tree40f0b6657d5612ef284e5992a253d823a2a432c4 /certmanager
parentd59f74e30fb3df4bfd516cf813a05702acc0c801 (diff)
downloadtdepim-58964048b37c52bbb841d7ec9386a75d9bf8fbc7.tar.gz
tdepim-58964048b37c52bbb841d7ec9386a75d9bf8fbc7.zip
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'certmanager')
-rw-r--r--certmanager/certmanager.cpp6
-rw-r--r--certmanager/lib/ui/messagebox.cpp4
2 files changed, 5 insertions, 5 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;
diff --git a/certmanager/lib/ui/messagebox.cpp b/certmanager/lib/ui/messagebox.cpp
index 935084bd6..fa14bfbe3 100644
--- a/certmanager/lib/ui/messagebox.cpp
+++ b/certmanager/lib/ui/messagebox.cpp
@@ -62,11 +62,11 @@ using namespace GpgME;
namespace {
static KGuiItem KGuiItem_save() {
- return KGuiItem( i18n("&Save to Disk..."), "filesaveas" );
+ return KGuiItem( i18n("&Save to Disk..."), "document-save-as" );
}
static KGuiItem KGuiItem_copy() {
- return KGuiItem( i18n("&Copy to Clipboard"), "editcopy", i18n("Copy Audit Log to Clipboard") );
+ return KGuiItem( i18n("&Copy to Clipboard"), "edit-copy", i18n("Copy Audit Log to Clipboard") );
}
static KGuiItem KGuiItem_showAuditLog() {