diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 12:48:02 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 12:48:02 -0500 |
commit | 22d1174898782a2aefa305e7076b29d00e1d5acd (patch) | |
tree | 72a40a6fafe12e09cb60e15a3e643806aa219f90 | |
parent | 6fa4944fec1eea8edcc8d440465bd733ccbe244e (diff) | |
download | konversation-22d1174898782a2aefa305e7076b29d00e1d5acd.tar.gz konversation-22d1174898782a2aefa305e7076b29d00e1d5acd.zip |
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r-- | konversation/src/dcctransferpanel.cpp | 2 | ||||
-rw-r--r-- | konversation/src/ircview.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/konversation/src/dcctransferpanel.cpp b/konversation/src/dcctransferpanel.cpp index 250c5db..30ab57b 100644 --- a/konversation/src/dcctransferpanel.cpp +++ b/konversation/src/dcctransferpanel.cpp @@ -142,7 +142,7 @@ void DccTransferPanel::initGUI() m_popup->insertItem(icon("process-stop"), i18n("A&bort"), Popup::Abort); m_popup->insertSeparator(); // ----- // FIXME: make it neat - m_popup->insertItem(icon("redo"), i18n("Resend"), Popup::Resend); + m_popup->insertItem(icon("edit-redo"), i18n("Resend"), Popup::Resend); m_popup->insertItem(icon("editdelete"), i18n("&Clear"), Popup::Clear); m_popup->insertSeparator(); // ----- m_popup->insertItem(icon("exec"), i18n("&Open File"), Popup::Open); diff --git a/konversation/src/ircview.cpp b/konversation/src/ircview.cpp index c7c6aad..c407426 100644 --- a/konversation/src/ircview.cpp +++ b/konversation/src/ircview.cpp @@ -109,7 +109,7 @@ IRCView::IRCView(TQWidget* parent, Server* newServer) : KTextBrowser(parent) m_popup->setItemVisible(copyUrlMenuSeparator, false); m_popup->insertItem(SmallIconSet("editcopy"),i18n("&Copy"),Copy); m_popup->insertItem(i18n("Select All"),SelectAll); - m_popup->insertItem(SmallIcon("find"),i18n("Find Text..."),Search); + m_popup->insertItem(SmallIcon("edit-find"),i18n("Find Text..."),Search); setServer(newServer); |