Mobile/filtering: full text filter, instead of just dive site

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-10-16 07:56:41 -04:00
parent 0bc0b6bfe8
commit 8f7633eff8
4 changed files with 14 additions and 5 deletions

View file

@ -434,3 +434,9 @@ QStringList DiveObjectHelper::firstGas() const
}
return gas;
}
// for a full text search / filter function
QString DiveObjectHelper::fullText() const
{
return trip() + location() + buddy() + divemaster() + suit() + tags();
}