diff options
author | megabigbug <megabigbug@arrakis.(none)> | 2009-07-23 21:43:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-24 01:22:57 +0200 |
commit | fb966c28c45b7391d3034dd56464604d88fdaffa (patch) | |
tree | 3715b39ee660276782e2e9d4385a2091a7f7573d /src/historymenu.cpp | |
parent | Add icons for "history panel" and "page source" items (diff) | |
download | rekonq-fb966c28c45b7391d3034dd56464604d88fdaffa.tar.xz |
Add icons for "history panel" and "page source" items
Diffstat (limited to 'src/historymenu.cpp')
-rw-r--r-- | src/historymenu.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/historymenu.cpp b/src/historymenu.cpp index 4f11d82c..cdf8d4d7 100644 --- a/src/historymenu.cpp +++ b/src/historymenu.cpp @@ -76,8 +76,9 @@ void HistoryMenu::postPopulated() addSeparator(); QAction *showAllAction = Application::instance()->mainWindow()->actionByName("show_history_panel"); + showAllAction->setIcon(KIcon("view-history")); addAction(showAllAction); - + KAction *clearAction = new KAction(i18n("Clear History"), this); connect(clearAction, SIGNAL(triggered()), this, SLOT(clearHistory())); addAction(clearAction); |