diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:50 -0500 |
commit | 82a9dfc83e2fcb9ce2a68e570488148e9b202075 (patch) | |
tree | c84801235e94a3507373c458afa02986c31a21f3 /src | |
parent | 3fa5876e0c4b02a777baa1b49ea912902635db2d (diff) | |
download | kvpnc-82a9dfc83e2fcb9ce2a68e570488148e9b202075.tar.gz kvpnc-82a9dfc83e2fcb9ce2a68e570488148e9b202075.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 '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 991cb06..bdc3946 100644 --- a/src/kvpnc.cpp +++ b/src/kvpnc.cpp @@ -365,7 +365,7 @@ void KVpnc::initAction() ( void* ) KStdAction::quit ( this, TQT_SLOT ( quitCalled() ), actionCollection() ); SaveSessionAction = new TDEAction ( i18n ( "&Save Profile..." ), "fileexport", Key_S, this, TQT_SLOT ( saveSessionClicked() ), actionCollection(), "saveSession" ); - DeleteSessionAction = new TDEAction ( i18n ( "&Delete Profile..." ), "editdelete", Key_D, this, TQT_SLOT ( deleteSessionClicked() ), actionCollection(), "deleteSession" ); + DeleteSessionAction = new TDEAction ( i18n ( "&Delete Profile..." ), "edit-delete", Key_D, this, TQT_SLOT ( deleteSessionClicked() ), actionCollection(), "deleteSession" ); RenameSessionAction = new TDEAction ( i18n ( "&Rename Profile..." ), "view_detailed", Key_D, this, TQT_SLOT ( renameSessionClicked() ), actionCollection(), "renameSession" ); // NewSessionAction = new TDEAction( i18n( "&New Profile..." ), "profilenew", Key_N, this, TQT_SLOT( newSessionClicked() ), actionCollection(), "newSession" ); //AdvancedSessionAction = new TDEAction( i18n( "&Advanced..." ), "wizard", Key_A, this, TQT_SLOT( advancedSettingsClicked() ), actionCollection(), "advancedSettingsSession" ); |