mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: move functions into struct dive
Nothing against free-standing functions, but in the case of dc_watertemp(), dc_airtemp(), endtime() and totaltime(), it seems natural to move this into the dive class and avoid polution of the global name space. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
b9df26066e
commit
a1e6df46d9
13 changed files with 63 additions and 64 deletions
|
@ -548,12 +548,12 @@ static bool can_merge(const struct dive *a, const struct dive *b, enum asked_use
|
|||
if (a->when > b->when)
|
||||
return false;
|
||||
/* Don't merge dives if there's more than half an hour between them */
|
||||
if (dive_endtime(a) + 30 * 60 < b->when) {
|
||||
if (a->endtime() + 30 * 60 < b->when) {
|
||||
if (*have_asked == NOTYET) {
|
||||
if (QMessageBox::warning(MainWindow::instance(),
|
||||
MainWindow::tr("Warning"),
|
||||
MainWindow::tr("Trying to merge dives with %1min interval in between").arg(
|
||||
(b->when - dive_endtime(a)) / 60),
|
||||
(b->when - a->endtime()) / 60),
|
||||
QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel) {
|
||||
*have_asked = DONTMERGE;
|
||||
return false;
|
||||
|
|
|
@ -282,7 +282,7 @@ void LocationInformationWidget::on_GPSbutton_clicked()
|
|||
|
||||
ImportGPS GPSDialog(this, fileName, &ui); // Create a GPS import QDialog
|
||||
GPSDialog.coords.start_dive = current_dive->when; // initialise
|
||||
GPSDialog.coords.end_dive = dive_endtime(current_dive);
|
||||
GPSDialog.coords.end_dive = current_dive->endtime();
|
||||
if (getCoordsFromGPXFile(&GPSDialog.coords, fileName) == 0) { // Get coordinates from GPS file
|
||||
GPSDialog.updateUI(); // If successful, put results in Dialog
|
||||
if (!GPSDialog.exec()) // and show QDialog
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue