summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-09-14 14:51:16 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-09-17 17:57:30 +0200
commit2f6964ea0018f6139de371a16f3a8812b26af804 (patch)
treecd41f4da6479b8a7b63774a1e405e146c4b6065f
parent861c4d854879b4e0358ad2f02d22753c37d57006 (diff)
Fix typo in QDateTime::fromSecsSinceEpoch() parameter name
Task-number: QTBUG-86400 Change-Id: I03f0cca08e05862e2a84ae6ec606a62713766462 Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
-rw-r--r--src/corelib/time/qdatetime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/time/qdatetime.h b/src/corelib/time/qdatetime.h
index b3e978ebf3..e22fd79b4f 100644
--- a/src/corelib/time/qdatetime.h
+++ b/src/corelib/time/qdatetime.h
@@ -342,7 +342,7 @@ public:
static QDateTime fromMSecsSinceEpoch(qint64 msecs, Qt::TimeSpec spec = Qt::LocalTime,
int offsetFromUtc = 0);
- static QDateTime fromSecsSinceEpoch(qint64 secs, Qt::TimeSpec spe = Qt::LocalTime,
+ static QDateTime fromSecsSinceEpoch(qint64 secs, Qt::TimeSpec spec = Qt::LocalTime,
int offsetFromUtc = 0);
#if QT_CONFIG(timezone)