diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 11:24:11 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 11:24:11 +0200 |
commit | 82862fbd150afae0101757d1d6081e0e6ddf7baa (patch) | |
tree | c864003f3580d4eae365e3757c7a826ae3f6bfe7 /src/history.cpp | |
parent | Forgot to add it... ;) (diff) | |
download | rekonq-82862fbd150afae0101757d1d6081e0e6ddf7baa.tar.xz |
astyle
Diffstat (limited to 'src/history.cpp')
-rw-r--r-- | src/history.cpp | 4 |
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; |