mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Mobile: remove full-text properties from DiveObjectHelper
These properties are not needed anymore, because the full text search was decoupled from the DiveObjectHelper. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
37a3daf2dd
commit
b7cddcc737
4 changed files with 0 additions and 22 deletions
|
@ -243,8 +243,6 @@ QVariant DiveListModel::data(const QModelIndex &index, int role) const
|
|||
switch(role) {
|
||||
case DiveRole: return QVariant::fromValue<QObject*>(curr_dive);
|
||||
case DiveDateRole: return (qlonglong)curr_dive->timestamp();
|
||||
case FullTextRole: return curr_dive->fullText();
|
||||
case FullTextNoNotesRole: return curr_dive->fullTextNoNotes();
|
||||
}
|
||||
return QVariant();
|
||||
|
||||
|
@ -255,8 +253,6 @@ QHash<int, QByteArray> DiveListModel::roleNames() const
|
|||
QHash<int, QByteArray> roles;
|
||||
roles[DiveRole] = "dive";
|
||||
roles[DiveDateRole] = "date";
|
||||
roles[FullTextRole] = "fulltext";
|
||||
roles[FullTextNoNotesRole] = "fulltextnonotes";
|
||||
return roles;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue