diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-11-07 22:31:43 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-11-07 22:31:43 +0100 |
commit | 23fdf29c98c402e96e7cb14eecba30671bc72d64 (patch) | |
tree | 2732854f3ded89546f86ce479654c569549a9ba4 /src/opensearch/opensearchreader.cpp | |
parent | First bunch of fixes for the suggestions. (diff) | |
download | rekonq-23fdf29c98c402e96e7cb14eecba30671bc72d64.tar.xz |
Let suggestions work also without search engines ones.
Diffstat (limited to 'src/opensearch/opensearchreader.cpp')
-rw-r--r-- | src/opensearch/opensearchreader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/opensearch/opensearchreader.cpp b/src/opensearch/opensearchreader.cpp index 1c106afa..aff9ff36 100644 --- a/src/opensearch/opensearchreader.cpp +++ b/src/opensearch/opensearchreader.cpp @@ -74,7 +74,8 @@ OpenSearchEngine *OpenSearchReader::read() { OpenSearchEngine *engine = new OpenSearchEngine(); - while (!isStartElement() && !atEnd()) { + while (!isStartElement() && !atEnd()) + { readNext(); } |