summaryrefslogtreecommitdiff
path: root/src/history.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-29 11:24:11 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-29 11:24:11 +0200
commit82862fbd150afae0101757d1d6081e0e6ddf7baa (patch)
treec864003f3580d4eae365e3757c7a826ae3f6bfe7 /src/history.cpp
parentForgot to add it... ;) (diff)
downloadrekonq-82862fbd150afae0101757d1d6081e0e6ddf7baa.tar.xz
astyle
Diffstat (limited to 'src/history.cpp')
-rw-r--r--src/history.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history.cpp b/src/history.cpp
index a59a4ce3..ee21a8f2 100644
--- a/src/history.cpp
+++ b/src/history.cpp
@@ -212,10 +212,10 @@ void HistoryManager::removeHistoryEntry(const HistoryItem &item)
void HistoryManager::removeHistoryEntry(const KUrl &url, const QString &title)
{
- for (int i = 0; i < m_history.count(); ++i)
+ for (int i = 0; i < m_history.count(); ++i)
{
if (url == m_history.at(i).url
- && (title.isEmpty() || title == m_history.at(i).title))
+ && (title.isEmpty() || title == m_history.at(i).title))
{
removeHistoryEntry(m_history.at(i));
break;