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 | 255fd6a2fdb5c7d68b2089e75bde457203083b36 (patch) | |
tree | 9fec560d43e4f34b84e886b38e88cf2f7065db2c /src | |
parent | df0f9fd81b926f16827a8a036c83e0afb7418b45 (diff) | |
download | kvpnc-255fd6a2fdb5c7d68b2089e75bde457203083b36.tar.gz kvpnc-255fd6a2fdb5c7d68b2089e75bde457203083b36.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
Diffstat (limited to 'src')
-rw-r--r-- | src/kvpnc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvpnc.cpp b/src/kvpnc.cpp index bdc3946..c5871c7 100644 --- a/src/kvpnc.cpp +++ b/src/kvpnc.cpp @@ -393,7 +393,7 @@ void KVpnc::initAction() // // tmp // ToolsInfoAction = new TDEToggleAction ( i18n("Show &Tools Info"), "info", CTRL + Key_T, this, TQT_SLOT(helpClicked() ), actionCollection(), "toolsinfo" ); - LogViewerAction = new TDEToggleAction ( i18n ( "Show &Log" ), "log", CTRL + Key_L, this, TQT_SLOT ( showLogViewer() ), actionCollection(), "logviewer" ); + LogViewerAction = new TDEToggleAction ( i18n ( "Show &Log" ), "text-x-log", CTRL + Key_L, this, TQT_SLOT ( showLogViewer() ), actionCollection(), "logviewer" ); GenerateOpenvpnKeyAction = new TDEToggleAction ( i18n ( "Generate OpenVPN Key" ), "key", CTRL + Key_G, this, TQT_SLOT ( generateOpenvpnKey() ), actionCollection(), "genOpenvpncKey" ); SendFeedbackMailAction = new TDEAction ( i18n ( "Send &Feedback Mail..." ), 0, this, TQT_SLOT ( sendFeedbackMail() ), actionCollection(), "help_send_feedback_mail" ); PrefAction = KStdAction::preferences ( this, TQT_SLOT ( slotSettings() ), actionCollection(), "preferences" ); |