diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-01 17:12:25 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-01 17:12:25 +0200 |
commit | cd4a0e5e5f829ea28da902ac5d8e25cb87ae8fec (patch) | |
tree | a2e1f4b178f53525515b95313e84d11186f8e00c /src | |
parent | Revert "Fixing Google search url" (diff) | |
download | rekonq-cd4a0e5e5f829ea28da902ac5d8e25cb87ae8fec.tar.xz |
Finally (and hopefully) fixed Google search url. Sorry for committing spam :)
Diffstat (limited to 'src')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index f3ccbce2..17e248f1 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -681,7 +681,7 @@ void MainView::loadUrl(const KUrl &url) if(scheme == QLatin1String("gg")) { QString str = loadingUrl.path(); - loadingUrl.setUrl( QString("http://google.com/complete/search?output=toolbar&q=%1").arg(str) ); + loadingUrl.setUrl( QString("http://google.com/search?&q=%1").arg(str) ); } // create convenience fake wk:// protocol, waiting for KServices learning |