mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile: remove filter settings
These are not used anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
eed4e2746d
commit
4cff23ef7a
5 changed files with 0 additions and 64 deletions
|
@ -12,8 +12,6 @@ class qPrefGeneral : public QObject {
|
|||
Q_PROPERTY(int pscr_ratio READ pscr_ratio WRITE set_pscr_ratio NOTIFY pscr_ratioChanged)
|
||||
Q_PROPERTY(QString diveshareExport_uid READ diveshareExport_uid WRITE set_diveshareExport_uid NOTIFY diveshareExport_uidChanged)
|
||||
Q_PROPERTY(bool diveshareExport_private READ diveshareExport_private WRITE set_diveshareExport_private NOTIFY diveshareExport_privateChanged)
|
||||
Q_PROPERTY(bool filterFullTextNotes READ filterFullTextNotes WRITE set_filterFullTextNotes NOTIFY filterFullTextNotesChanged)
|
||||
Q_PROPERTY(bool filterCaseSensitive READ filterCaseSensitive WRITE set_filterCaseSensitive NOTIFY filterCaseSensitiveChanged)
|
||||
|
||||
public:
|
||||
static qPrefGeneral *instance();
|
||||
|
@ -29,8 +27,6 @@ public:
|
|||
static int pscr_ratio() { return prefs.pscr_ratio; }
|
||||
static QString diveshareExport_uid() { return st_diveshareExport_uid; }
|
||||
static bool diveshareExport_private() { return st_diveshareExport_private; }
|
||||
static bool filterFullTextNotes() { return prefs.filterFullTextNotes; }
|
||||
static bool filterCaseSensitive() { return prefs.filterCaseSensitive; }
|
||||
|
||||
public slots:
|
||||
static void set_defaultsetpoint(int value);
|
||||
|
@ -38,8 +34,6 @@ public slots:
|
|||
static void set_pscr_ratio(int value);
|
||||
static void set_diveshareExport_uid(const QString& value);
|
||||
static void set_diveshareExport_private(bool value);
|
||||
static void set_filterFullTextNotes(bool value);
|
||||
static void set_filterCaseSensitive(bool value);
|
||||
|
||||
signals:
|
||||
void defaultsetpointChanged(int value);
|
||||
|
@ -47,9 +41,7 @@ signals:
|
|||
void pscr_ratioChanged(int value);
|
||||
void diveshareExport_uidChanged(const QString& value);
|
||||
void diveshareExport_privateChanged(bool value);
|
||||
void filterFullTextNotesChanged(bool value);
|
||||
void salinityEditDefaultChanged(bool value);
|
||||
void filterCaseSensitiveChanged(bool value);
|
||||
|
||||
private:
|
||||
qPrefGeneral() {}
|
||||
|
@ -57,8 +49,6 @@ private:
|
|||
static void disk_defaultsetpoint(bool doSync);
|
||||
static void disk_o2consumption(bool doSync);
|
||||
static void disk_pscr_ratio(bool doSync);
|
||||
static void disk_filterFullTextNotes(bool doSync);
|
||||
static void disk_filterCaseSensitive(bool doSync);
|
||||
|
||||
// class variables are load only
|
||||
static void load_diveshareExport_uid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue