diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-06-23 19:33:09 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-06-23 19:33:09 +0200 |
commit | 7aae683da8e55e8e277d58749e00c8f9a583f044 (patch) | |
tree | 238aa1c2454248930a1e21a0cf51a9000cb768e3 /src/application.cpp | |
parent | Merge commit 'rekonq-master/master' (diff) | |
download | rekonq-7aae683da8e55e8e277d58749e00c8f9a583f044.tar.xz |
Changed the icon for tabs without own favicon to a generic html-icon
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 5b458438..b940794a 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -190,7 +190,7 @@ KIcon Application::icon(const KUrl &url) const KIcon icon = KIcon(QWebSettings::iconForUrl(url)); if (icon.isNull()) { - icon = KIcon("kde"); + icon = KIcon("text-html"); } return icon; } |