summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:49:45 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:49:45 -0500
commit873cb9fc70c1eefce5325a45e466d2be342025b2 (patch)
tree3ffbfc65ca7ec833f5b5d3a634a7f50dd78f2252
parent0af61a3b4634c347aaee4e4afda9d3b1f22e0803 (diff)
downloadtdeaddons-873cb9fc.tar.gz
tdeaddons-873cb9fc.zip
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r--konq-plugins/searchbar/searchbar.cpp4
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;