diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:26 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:26 -0500 |
commit | 252bf9a457e22c0ee032e0f3cdac62c5b9fb59c4 (patch) | |
tree | 4746bcc6559d21a18ed40869fb6713b020a445eb | |
parent | 1a3d073b1bc176337dfc6b7d6c4f5db366271ff7 (diff) | |
download | kshowmail-252bf9a457e22c0ee032e0f3cdac62c5b9fb59c4.tar.gz kshowmail-252bf9a457e22c0ee032e0f3cdac62c5b9fb59c4.zip |
Bring most mimetypes in line with XDG specifications. The following are not fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
-rw-r--r-- | kshowmail/kshowmail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kshowmail/kshowmail.cpp b/kshowmail/kshowmail.cpp index 4c089c7..ff1a3d9 100644 --- a/kshowmail/kshowmail.cpp +++ b/kshowmail/kshowmail.cpp @@ -134,7 +134,7 @@ void KShowMailApp::initActions () new TDEAction( i18n( "Show &complete highlighted messages" ), "letter-open", Key_F3, this, SLOT( slotShowMessage() ), actionCollection(), "show_complete" ); new TDEAction( i18n( "&Delete highlighted messages" ), "eraser", Key_Delete, this, SLOT( slotDelete() ), actionCollection(), "delete" ); new TDEAction( i18n( "S&top current transfer" ), "process-stop", 0, this, SLOT( slotStop() ), actionCollection(), "stop" ); - new TDEAction( i18n( "Show Filter Log" ), "log", Key_F4, this, SLOT( slotShowFilterLog() ), actionCollection(), "show_filterlog" ); + new TDEAction( i18n( "Show Filter Log" ), "text-x-log", Key_F4, this, SLOT( slotShowFilterLog() ), actionCollection(), "show_filterlog" ); new TDEAction( i18n( "Add sender to whitelist" ), "add_user", 0, this, SLOT( slotAddToWhitelist() ), actionCollection(), "addWhitelist" ); new TDEAction( i18n( "Add sender to blacklist" ), "delete_user", 0, this, SLOT( slotAddToBlacklist() ), actionCollection(), "addBlacklist" ); |