summaryrefslogtreecommitdiff
path: root/src/history
diff options
context:
space:
mode:
authorRohan Garg <rohangarg@kubuntu.org>2010-09-11 17:29:03 +0530
committerRohan Garg <rohangarg@kubuntu.org>2010-09-11 17:29:03 +0530
commitc4fbac5bbdc10c2d657f8b3a7759ab7edf52a744 (patch)
tree902950a8cdb29710d6c4eae36a00a2f662aa4015 /src/history
parentMerge branch 'iconFixes2' (diff)
downloadrekonq-c4fbac5bbdc10c2d657f8b3a7759ab7edf52a744.tar.xz
Krazy Fixes for rekonq
modified: src/bookmarks/bookmarkprovider.cpp modified: src/history/historymanager.cpp modified: src/iconmanager.cpp modified: src/urlbar/listitem.cpp
Diffstat (limited to 'src/history')
-rw-r--r--src/history/historymanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history/historymanager.cpp b/src/history/historymanager.cpp
index 4a3039f3..4a2c0459 100644
--- a/src/history/historymanager.cpp
+++ b/src/history/historymanager.cpp
@@ -240,7 +240,7 @@ QList<HistoryItem> HistoryManager::find(const QString &text)
int index = m_historyFilterModel->historyLocation(url);
HistoryItem item = m_history.at(index);
- QStringList words = text.split(" ");
+ QStringList words = text.split(' ');
bool matches = true;
foreach (const QString &word, words)
{