summaryrefslogtreecommitdiff
path: root/src/urlbar/listitem.cpp
diff options
context:
space:
mode:
authorMaarten De Meyer <de.meyer.maarten@gmail.com>2013-04-07 11:38:09 +0200
committerAndrea Diamantini <adjam7@gmail.com>2013-04-07 11:39:40 +0200
commit5d1a223145be0eb1bb5eed76cda7d4b889d986ed (patch)
tree1e81db324a50968f5484e073685a5bac61b2deeb /src/urlbar/listitem.cpp
parentFix rekonq window title update (diff)
downloadrekonq-5d1a223145be0eb1bb5eed76cda7d4b889d986ed.tar.xz
Use kurifilter instead of custom rekonq code.
Now all web shortcuts work. BUG: 258639 REVIEWED BY: adjam
Diffstat (limited to 'src/urlbar/listitem.cpp')
-rw-r--r--src/urlbar/listitem.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp
index 580eea53..cc0bf253 100644
--- a/src/urlbar/listitem.cpp
+++ b/src/urlbar/listitem.cpp
@@ -460,12 +460,7 @@ void SearchListItem::changeSearchEngine(KService::Ptr engine)
// NOTE: This to let rekonq loading text typed in the requested engine on click.
// There probably is a better way to do it. I just cannot see it now...
- // remove the xx: part...
- QString separator = SearchEngine::delimiter();
-
- QString text = m_text.contains(separator)
- ? m_text.section(separator, 1, 1)
- : m_text;
+ QString text = m_text;
// create a new item && load it...
UrlSuggestionItem item = UrlSuggestionItem(UrlSuggestionItem::Search, SearchEngine::buildQuery(engine, text), text);