diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-22 10:44:42 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-22 10:44:42 +0100 |
commit | c4aed7f36bd4bbd87ba66bb19dfb178420488d35 (patch) | |
tree | 5ce36cb72c2758297c0b14869380056cc71ede1f | |
parent | 15d74960e5f8b0dd76b77bc6bf3e5595094e3d3e (diff) | |
download | sink-c4aed7f36bd4bbd87ba66bb19dfb178420488d35.tar.gz sink-c4aed7f36bd4bbd87ba66bb19dfb178420488d35.zip |
Removed unused parameter
-rw-r--r-- | common/fulltextindex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fulltextindex.cpp b/common/fulltextindex.cpp index 355f1ca..164a5b9 100644 --- a/common/fulltextindex.cpp +++ b/common/fulltextindex.cpp | |||
@@ -176,7 +176,7 @@ QVector<QByteArray> FulltextIndex::lookup(const QString &searchTerm) | |||
176 | results << QByteArray{data.c_str(), int(data.length())}; | 176 | results << QByteArray{data.c_str(), int(data.length())}; |
177 | } | 177 | } |
178 | } | 178 | } |
179 | catch (const Xapian::Error &error) { | 179 | catch (const Xapian::Error &) { |
180 | // Nothing to do, move along | 180 | // Nothing to do, move along |
181 | } | 181 | } |
182 | return results; | 182 | return results; |