diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-18 03:26:42 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-18 03:26:42 +0100 |
commit | 871fa5c3a2f0f85f7338171c3d7660167150c69d (patch) | |
tree | 71e9d40c46600889d3bda485675418cb710cea80 /src/mainwindow.cpp | |
parent | don't change stop/reload icon on not focused loading pages. (diff) | |
download | rekonq-871fa5c3a2f0f85f7338171c3d7660167150c69d.tar.xz |
half fixed (but half is not enough...) the favicon querelle..
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e965aa19..a4df5756 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1165,7 +1165,7 @@ void MainWindow::aboutToShowBackMenu() QWebHistoryItem item = historyList.at(i); KAction *action = new KAction(this); action->setData(i + offset); - QIcon icon = Application::icon( item.url() ); + KIcon icon = Application::icon( item.url() ); action->setIcon( icon ); action->setText( item.title() ); m_historyBackMenu->addAction(action); |