mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix compile error
I get compile errors from these lines. Removing the class name from the calls allow me to compile the current master. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
240e269f19
commit
1328b44d44
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ void ShiftImageTimesDialog::syncCameraClicked()
|
||||||
EXIFInfo exiv;
|
EXIFInfo exiv;
|
||||||
int retval;
|
int retval;
|
||||||
QPixmap picture;
|
QPixmap picture;
|
||||||
QDateTime dcDateTime = QDateTime::QDateTime();
|
QDateTime dcDateTime = QDateTime();
|
||||||
QStringList fileNames = QFileDialog::getOpenFileNames(this,
|
QStringList fileNames = QFileDialog::getOpenFileNames(this,
|
||||||
tr("Open Image File"),
|
tr("Open Image File"),
|
||||||
MainWindow().dive_list()->lastUsedImageDir(),
|
MainWindow().dive_list()->lastUsedImageDir(),
|
||||||
|
@ -247,7 +247,7 @@ void ShiftImageTimesDialog::setOffset(time_t offset)
|
||||||
ui.backwards->setChecked(TRUE);
|
ui.backwards->setChecked(TRUE);
|
||||||
offset *= -1;
|
offset *= -1;
|
||||||
}
|
}
|
||||||
ui.timeEdit->setTime(QTime::QTime(offset / 3600, (offset % 3600) / 60, offset % 60));
|
ui.timeEdit->setTime(QTime(offset / 3600, (offset % 3600) / 60, offset % 60));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isGnome3Session()
|
bool isGnome3Session()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue