summaryrefslogtreecommitdiffstats
path: root/src/corelib/time/qdatetime.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix an assertion failure in massageAdjustedDateTime()v6.2.3Edward Welbourne2022-01-181-3/+3
* QDateTime: fix UB (signed overflow) in addDays()Marc Mutz2021-12-221-3/+4
* Remove an overly-complex assertionEdward Welbourne2021-10-271-9/+0
* corelib: Fix typos in documentationJonas Kvinge2021-10-121-1/+1
* QDateTime: fix build with MinGW: need unistd.h very earlyThiago Macieira2021-09-301-3/+0
* 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
* Make QDateTime's operators hidden friendsEdward Welbourne2020-11-071-21/+48
* Make QTime's operators hidden friendsEdward Welbourne2020-11-071-12/+12
* Make QDate's operators hidden friendsEdward Welbourne2020-11-071-14/+12
* Use unchecked substring methods in date-time codeEdward Welbourne2020-10-191-23/+21
* Check time-text is long enough while checking for its colonsEdward Welbourne2020-10-191-1/+3
* Check validity before adding to a QDateTimeEdward Welbourne2020-10-091-0/+9
* Check against {und,ov}erflow in more QDateTime methodsEdward Welbourne2020-10-091-11/+39
* Check value is in range when setting a QDateTimeEdward Welbourne2020-10-091-5/+16
* Allow millisecond-overflow when the result remains validEdward Welbourne2020-10-071-8/+28
* Use fromIsoTimeString() in QDateTime::fromString() also for TextDateEdward Welbourne2020-10-071-37/+2
* Use start of day when wrapping 24:00 to the next dayEdward Welbourne2020-10-071-2/+2
* Prefer QStringView's operator[] over its at()Edward Welbourne2020-10-061-7/+7
* Implement date-time fromString(QStringView...) methodsEdward Welbourne2020-10-051-15/+67
* Handle trailing cruft consistently in Qt::DateFormat parsingEdward Welbourne2020-10-031-71/+71
* Modernize implementation in date-time and its parsingEdward Welbourne2020-10-021-39/+33