summaryrefslogtreecommitdiffstats
path: root/core/dive.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-09-25 21:28:46 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-10-02 08:04:49 -0700
commita1a2492438ab3e5521cd754cc4a1763b216034e5 (patch)
treee4576f4e95291af15a882cb78d1bc9e633909a8d /core/dive.h
parent7615e71760fcb69cbed857caf4bbc03ef5dba610 (diff)
downloadsubsurface-a1a2492438ab3e5521cd754cc4a1763b216034e5.tar.gz
Cleanup: remove dive_table and dive_site_table Q_METATYPEs
These are not passed through QML anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/dive.h')
-rw-r--r--core/dive.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/core/dive.h b/core/dive.h
index 517c18c8b..d3101cc83 100644
--- a/core/dive.h
+++ b/core/dive.h
@@ -436,15 +436,11 @@ extern void update_setpoint_events(const struct dive *dive, struct divecomputer
#ifdef __cplusplus
}
-/* Make pointers to dive, dive_trip, dive_table, trip_table and dive_site_table
- * "Qt metatypes" so that they can be passed through QVariants and through QML.
- * Note: we have to use the typedef "dive_table_t" instead of "struct dive_table",
- * because MOC removes the "struct", but dive_table is already the name of a global
- * variable, leading to compilation errors. Likewise for "struct trip_table" and
- * "struct dive_site_table" (defined in "dive.h" and "divesite.h"). */
+/* Make pointers to dive and dive_trip "Qt metatypes" so that they can be passed through
+ * QVariants and through QML.
+ */
#include <QObject>
Q_DECLARE_METATYPE(struct dive *);
-Q_DECLARE_METATYPE(dive_table_t *);
#endif