mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: fix mis-spelling of UCT in comments as well
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3eff96bcd2
commit
eb76bdb3e3
1 changed files with 3 additions and 3 deletions
|
@ -8,12 +8,12 @@
|
|||
struct dive_coords { // This structure holds important information after parsing the GPX file:
|
||||
time_t start_dive; // Start time of the current dive, obtained using current_dive (local time)
|
||||
time_t end_dive; // End time of current dive (local time)
|
||||
time_t start_track; // Start time of GPX track (UCT)
|
||||
time_t end_track; // End time of GPX track (UCT)
|
||||
time_t start_track; // Start time of GPX track (UTC)
|
||||
time_t end_track; // End time of GPX track (UTC)
|
||||
double lon; // Longitude of the first trackpoint after the start of the dive
|
||||
double lat; // Latitude of the first trackpoint after the start of the dive
|
||||
int64_t settingsDiff_offset; // Local time difference between dive computer and GPS equipment
|
||||
int64_t timeZone_offset; // UCT international time zone offset of dive site
|
||||
int64_t timeZone_offset; // UTC international time zone offset of dive site
|
||||
};
|
||||
|
||||
int getCoordsFromGPXFile(dive_coords *coords, QString fileName);
|
||||
|
|
Loading…
Add table
Reference in a new issue