diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:49:45 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:49:45 -0500 |
commit | 873cb9fc70c1eefce5325a45e466d2be342025b2 (patch) | |
tree | 3ffbfc65ca7ec833f5b5d3a634a7f50dd78f2252 /konq-plugins/searchbar | |
parent | 0af61a3b4634c347aaee4e4afda9d3b1f22e0803 (diff) | |
download | tdeaddons-873cb9fc70c1eefce5325a45e466d2be342025b2.tar.gz tdeaddons-873cb9fc70c1eefce5325a45e466d2be342025b2.zip |
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'konq-plugins/searchbar')
-rw-r--r-- | konq-plugins/searchbar/searchbar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/searchbar/searchbar.cpp b/konq-plugins/searchbar/searchbar.cpp index 03328f7..cf2809c 100644 --- a/konq-plugins/searchbar/searchbar.cpp +++ b/konq-plugins/searchbar/searchbar.cpp @@ -318,7 +318,7 @@ void SearchBarPlugin::setIcon() TQString hinttext; if(m_searchMode == FindInThisPage) { - m_searchIcon = SmallIcon("find"); + m_searchIcon = SmallIcon("edit-find"); hinttext = i18n("Find in This Page"); } else @@ -382,7 +382,7 @@ void SearchBarPlugin::showSelectionMenu() list << "kurisearchfilter" << "kuriikwsfilter"; m_popupMenu = new TQPopupMenu(m_searchCombo, "search selection menu"); - m_popupMenu->insertItem(SmallIcon("find"), i18n("Find in This Page"), this, TQT_SLOT(useFindInThisPage()), 0, 999); + m_popupMenu->insertItem(SmallIcon("edit-find"), i18n("Find in This Page"), this, TQT_SLOT(useFindInThisPage()), 0, 999); m_popupMenu->insertSeparator(); int i=-1; |