1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-23 07:14:22 +02:00

Fixed build with some Qt versions

+ ENC style enhancements
This commit is contained in:
2022-11-04 09:22:17 +01:00
parent f8d856b7ee
commit e8f3d028dd
3 changed files with 8 additions and 3 deletions

View File

@ -132,6 +132,7 @@ private:
};
struct Sounding {
Sounding() : depth(NAN) {}
Sounding(const Coordinates &c, double depth) : c(c), depth(depth) {}
Coordinates c;