summaryrefslogtreecommitdiffstats
path: root/core/qthelper.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-07-11 12:00:05 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-07-11 12:00:10 -0700
commitf059adb6397fc92dd201c66e418778e801d8172a (patch)
tree623734f8517abbf2566c71b1b3cbe9fff53e006a /core/qthelper.cpp
parent7acb229b4a8876ab0b679521afa44fa74d4433dc (diff)
downloadsubsurface-f059adb6397fc92dd201c66e418778e801d8172a.tar.gz
helper functions: remove timestamp argument from gettiemzoneoffset()
The last user of that argument has been removed. (a random whitespace fix snuck in with this) Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/qthelper.cpp')
-rw-r--r--core/qthelper.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp
index 1ae788966..656640755 100644
--- a/core/qthelper.cpp
+++ b/core/qthelper.cpp
@@ -624,7 +624,7 @@ QString get_pressure_string(pressure_t pressure, bool showunit)
QString get_salinity_string(int salinity)
{
- return QStringLiteral("%L1%2").arg(salinity / 10.0).arg(gettextFromC::tr("g/ℓ"));
+ return QStringLiteral("%L1%2").arg(salinity / 10.0).arg(gettextFromC::tr("g/ℓ"));
}
QString get_water_type_string(int salinity)
@@ -690,13 +690,10 @@ QString getPrintingTemplatePathBundle()
return path;
}
-int gettimezoneoffset(timestamp_t when)
+int gettimezoneoffset()
{
QDateTime dt1, dt2;
- if (when == 0)
- dt1 = QDateTime::currentDateTime();
- else
- dt1 = timestampToDateTime(when);
+ dt1 = QDateTime::currentDateTime();
dt2 = dt1.toUTC();
dt1.setTimeSpec(Qt::UTC);
return dt2.secsTo(dt1);