summaryrefslogtreecommitdiffstats
path: root/src/corelib/time/qdatetime.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix an assertion failure in massageAdjustedDateTime()Edward Welbourne2022-01-131-4/+4
* QDateTime: fix UB (signed overflow) in addDays()Marc Mutz2021-12-211-3/+4
* Remove some spurious prefixes in declarationsEdward Welbourne2021-11-181-2/+2
* Doc: Fix qdoc warningsVenugopal Shivashankar2021-10-231-1/+1
* QDateTime: Limit string processing to known boundariesMårten Nordheim2021-10-201-6/+18
* corelib: Fix typos in documentationJonas Kvinge2021-10-121-1/+1
* Set tm_isdst = -1 before calling mktime()Edward Welbourne2021-10-111-0/+3
* Broaden condition on use of MS's localtime_s()Edward Welbourne2021-10-111-2/+2
* Remove an overly-complex assertionEdward Welbourne2021-10-041-9/+0
* QDateTime: fix build with MinGW: need unistd.h very earlyThiago Macieira2021-09-291-3/+0
* Add new am/pm format-specifier that preserves locale's caseEdward Welbourne2021-09-081-25/+31
* wasm: fix assert in QDateTimeLorn Potter2021-08-191-1/+1
* QDateTime: port to QStringTokenizer and QVLAMarc Mutz2021-08-181-3/+6
* QDateTime: port away from takeFirst() useMarc Mutz2021-08-161-6/+11
* Remove some now-redundant casts to qint64Edward Welbourne2021-07-221-8/+3
* Use year with same day-of-week pattern as fallback for out-of-rangeEdward Welbourne2021-06-161-20/+40
* Rework massageAdjusted and make the most of its DST knowledgeEdward Welbourne2021-06-141-17/+41
* Stop using mixed enum arithmeticGiuseppe D'Angelo2021-06-131-11/+9
* Correct handling of last second of 1969 (again)Edward Welbourne2021-06-111-48/+139
* Rework setMSecsSinceEpoch() to avoid local->UTC conversionsEdward Welbourne2021-06-111-44/+41
* Simplify QDate::weekNumber()Edward Welbourne2021-06-071-7/+5
* Check for overflow in QDateTime::setMSecsSinceEpoch()Edward Welbourne2021-05-261-7/+11
* Harmonize zoneMSecsToEpochMSecs() and localMSecsToEpochMSecs()Edward Welbourne2021-05-261-19/+21
* Use time-zone transition data before 1970 as well as afterEdward Welbourne2021-05-261-161/+193
* Initialize SYSTEMTIME to {} instead of memset()ingEdward Welbourne2021-05-251-12/+6
* QDateTime(Parser): code tidiesGiuseppe D'Angelo2021-05-251-20/+21
* QDateTime: fix our oversight in Qt 6.0 not changing the ShortDataThiago Macieira2021-05-151-1/+5
* Ensure setDateTime clears status also when shortEdward Welbourne2021-05-041-1/+3
* Handle invalid system zone case when falling back from time_t functionsEdward Welbourne2021-04-291-26/+30
* QDateTime: Avoid compiler warning about issue impossible at runtimeRobert Löhning2021-04-211-1/+1
* Handle overflow in QTimeZonePrivate::dataForLocalTime() and its callerEdward Welbourne2021-04-201-18/+25
* Fix another compilation error in QDateTimeEirik Aavitsland2021-04-201-1/+3
* Use QTimeZone to determine offsets outside the system-function rangeEdward Welbourne2021-04-161-21/+54
* Extend time_t-based handling all the way to the end of time_tEdward Welbourne2021-04-161-100/+107
* Don't combine enum values from different enum typesVolker Hilsheimer2021-03-181-2/+2
* Fix compilation error in QDateTimeAndrei Golubev2021-03-041-1/+3
* Try again if mktime() fails when we thought we knew DST-nessEdward Welbourne2021-03-011-0/+6
* Only store offsetFromUtc when sane (and assert sanity)Edward Welbourne2021-03-011-4/+8
* Rework an assertion to eliminate a common sub-expression using a lambdaEdward Welbourne2021-03-011-8/+9
* Use qint64 as base-type for an enum mostly cast to that typeEdward Welbourne2021-03-011-45/+47
* Correct qt_mktime()'s check for last second in 1969Edward Welbourne2021-02-181-1/+1
* Fix a typo, simplify an increment, add an assertionEdward Welbourne2021-02-181-3/+5
* Drop parsing of antique TextDate formatEdward Welbourne2021-02-151-27/+8
* QDateTime::toString(): use UTC-offset as time-zone suffixEdward Welbourne2021-02-151-1/+2
* Prepare TextDate to use UTC-offset rather than GMT-offset zone suffixesEdward Welbourne2021-02-151-9/+13
* Update QDateTime::timeZoneAbbreviation docsEdward Welbourne2021-02-121-14/+14
* Add test creating QDateTime in double-DST gap in 1947 GermanyAndreas Buhr2020-12-241-0/+3
* Restore previous QDateTime behavior in DST gapAndreas Buhr2020-12-151-3/+3
* Return a more useful date-time on parser failure in spring-forward gapEdward Welbourne2020-11-271-2/+8
* Bounds-check time-zone offsets when parsingEdward Welbourne2020-11-271-1/+1