mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
filter: remove filter_preset_table_t
We used a typedef "filter_preset_table_t" for the filter preset table, because it is a "std::vector<filter_preset>". However, that is in contrast to all the other global tables (dives, trips, sites) that we have. Therefore, turn this into a standard struct, which simply inherits from "std::vector<filter_preset>". Note that while inheriting from std::vector<> is generally not recommended, it is not a problem here, because we don't modify it in any shape or form. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
67aec56f8c
commit
a7bbb6c1cc
20 changed files with 52 additions and 46 deletions
|
@ -18,7 +18,7 @@ void addDive(dive *d, bool autogroup, bool newNumber)
|
|||
}
|
||||
|
||||
void importDives(struct dive_table *dives, struct trip_table *trips, struct dive_site_table *sites,
|
||||
filter_preset_table_t *presets, int flags, const QString &source)
|
||||
struct filter_preset_table *presets, int flags, const QString &source)
|
||||
{
|
||||
execute(new ImportDives(dives, trips, sites, presets, flags, source));
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ QString changesMade(); // return a string with the texts from all commands on
|
|||
// insertion position.
|
||||
void addDive(dive *d, bool autogroup, bool newNumber);
|
||||
void importDives(struct dive_table *dives, struct trip_table *trips,
|
||||
struct dive_site_table *sites, filter_preset_table_t *filter_presets,
|
||||
struct dive_site_table *sites, struct filter_preset_table *filter_presets,
|
||||
int flags, const QString &source); // The tables are consumed!
|
||||
void deleteDive(const QVector<struct dive*> &divesToDelete);
|
||||
void shiftTime(const std::vector<dive *> &changedDives, int amount);
|
||||
|
|
|
@ -470,7 +470,7 @@ void AddDive::undoit()
|
|||
}
|
||||
|
||||
ImportDives::ImportDives(struct dive_table *dives, struct trip_table *trips, struct dive_site_table *sites,
|
||||
filter_preset_table_t *filter_presets, int flags, const QString &source)
|
||||
struct filter_preset_table *filter_presets, int flags, const QString &source)
|
||||
{
|
||||
setText(Command::Base::tr("import %n dive(s) from %1", "", dives->nr).arg(source));
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ class ImportDives : public DiveListBase {
|
|||
public:
|
||||
// Note: dives and trips are consumed - after the call they will be empty.
|
||||
ImportDives(struct dive_table *dives, struct trip_table *trips, struct dive_site_table *sites,
|
||||
filter_preset_table_t *filter_presets, int flags, const QString &source);
|
||||
struct filter_preset_table *filter_presets, int flags, const QString &source);
|
||||
private:
|
||||
void undoit() override;
|
||||
void redoit() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue