aboutsummaryrefslogtreecommitdiffstats
path: root/core/fulltext.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fulltext.h')
-rw-r--r--core/fulltext.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/fulltext.h b/core/fulltext.h
index 108749e1d..2f1c63db1 100644
--- a/core/fulltext.h
+++ b/core/fulltext.h
@@ -45,6 +45,7 @@ enum class StringFilterMode {
// A fulltext query. Basically a list of normalized words we search for
struct FullTextQuery {
std::vector<QString> words;
+ QString originalQuery; // Remember original query, which will be written to the log
FullTextQuery &operator=(const QString &); // Initialize by assigning a user-provided search string
bool doit() const; // true if we should to a fulltext search
};