diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 19:42:57 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 19:42:57 +0100 |
commit | f2fc94f76377e5ccfec9469862f02d5461798c6e (patch) | |
tree | 6fb17e433de5a2d743cedfbc9b1b89e7c4b3e28a /src/application.cpp | |
parent | Last commit before branching "di brutto".. (diff) | |
download | rekonq-f2fc94f76377e5ccfec9469862f02d5461798c6e.tar.xz |
removed unuseful m_defaultIcon
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 31 |
1 files changed, 5 insertions, 26 deletions
diff --git a/src/application.cpp b/src/application.cpp index cc237823..53825411 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -172,27 +172,6 @@ WebView *Application::newTab() } -// void Application::newLocalSocketConnection() -// { -// QLocalSocket *socket = m_localServer->nextPendingConnection(); -// if (!socket) -// return; -// socket->waitForReadyRead(1000); -// QTextStream stream(socket); -// QString url; -// stream >> url; -// if (!url.isEmpty()) -// { -// mainWindow()->tabWidget()->newTab(); -// openUrl(url); -// } -// delete socket; -// mainWindow()->raise(); -// mainWindow()->activateWindow(); -// } - - - CookieJar *Application::cookieJar() { return (CookieJar*)networkAccessManager()->cookieJar(); @@ -225,10 +204,10 @@ HistoryManager *Application::historyManager() KIcon Application::icon(const KUrl &url) const { KIcon icon = KIcon( QWebSettings::iconForUrl(url) ); - if (!icon.isNull()) - return icon; - if (m_defaultIcon.isNull()) - m_defaultIcon = KIcon("kde"); - return m_defaultIcon; + if (icon.isNull()) + { + icon = KIcon("kde"); + } + return icon; } |