summaryrefslogtreecommitdiffstats
path: root/src/corelib/time
Commit message (Expand)AuthorAgeFilesLines
...
* Doc: Ensure deprecated APIs in Qt Core are documented as suchNico Vertriest2021-07-231-1/+1
* Remove some now-redundant casts to qint64Edward Welbourne2021-07-221-8/+3
* Make QCalendarBackend's ID an opaque typeEdward Welbourne2021-07-198-60/+107
* Make locale ordering transitiveEdward Welbourne2021-07-143-24/+24
* Use qMod(, 7) rather than % 7 in day-of-week calculationEdward Welbourne2021-06-251-1/+1
* Use UTC when parsing only a date or only a time, not a date-timeEdward Welbourne2021-06-231-5/+10
* Fix handling of day-of-week in QDateTimeParser and QDateTimeEditEdward Welbourne2021-06-231-21/+82
* Use year with same day-of-week pattern as fallback for out-of-rangeEdward Welbourne2021-06-163-22/+51
* QTimeZonePrivate: Reduce copying by not using QByteArrayMårten Nordheim2021-06-141-26/+32
* 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
* QTimeZonePrivate::territory: use QStringTokenizerMårten Nordheim2021-06-121-6/+4
* Fix date parsing when local time lacks the start of the dayEdward Welbourne2021-06-111-13/+26
* 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
* QTimeZonePrivate: make windowsId return a QByteArrayViewMårten Nordheim2021-06-071-2/+2
* Simplify QDate::weekNumber()Edward Welbourne2021-06-071-7/+5
* QDateTime{Parser,EditPrivate}: clean up initializationEdward Welbourne2021-06-031-6/+5
* Check for overflow in QDateTime::setMSecsSinceEpoch()Edward Welbourne2021-05-261-7/+11
* Harmonize zoneMSecsToEpochMSecs() and localMSecsToEpochMSecs()Edward Welbourne2021-05-262-26/+27
* Use time-zone transition data before 1970 as well as afterEdward Welbourne2021-05-263-165/+195
* Doc: Use \deprecated instead of \obsoletePaul Wicking2021-05-261-1/+1
* Initialize SYSTEMTIME to {} instead of memset()ingEdward Welbourne2021-05-251-12/+6
* QDateTime(Parser): code tidiesGiuseppe D'Angelo2021-05-252-22/+23
* QDateTime: fix our oversight in Qt 6.0 not changing the ShortDataThiago Macieira2021-05-152-3/+11
* QDateTime: code tidiesGiuseppe D'Angelo2021-05-131-3/+5
* Use templated QJniObject::object() instead of static_castAssam Boudjelthia2021-05-061-9/+9
* Ensure setDateTime clears status also when shortEdward Welbourne2021-05-041-1/+3
* Revert early return from QTimeZone on invalid IDEdward Welbourne2021-04-291-3/+0
* Handle invalid system zone case when falling back from time_t functionsEdward Welbourne2021-04-291-26/+30
* Fix mix-guided use of const reference variableEdward Welbourne2021-04-291-1/+1
* Check POSIX rules during QTzTimeZone creationEdward Welbourne2021-04-272-15/+65
* Fix handling of a POSIX zone rule describing permanent DSTEdward Welbourne2021-04-271-17/+44
* Correct the parsing of POSIX rule day-of-year fieldsEdward Welbourne2021-04-271-8/+11
* Update CLDR-derived data to newly-released v39Edward Welbourne2021-04-263-631/+632
* Make zone-name part of date-time parsing a little fasterEdward Welbourne2021-04-231-2/+2
* QDateTime: Avoid compiler warning about issue impossible at runtimeRobert Löhning2021-04-211-1/+1
* In the POSIX zone parser, handle no-DST zones the same as name-onlyEdward Welbourne2021-04-201-3/+3
* Correct the range of allowed hours for a POSIX rule's transitionEdward Welbourne2021-04-201-27/+14
* Make deserialization of QTimeZone less promiscuousEdward Welbourne2021-04-201-3/+6
* Return early from QTimeZone constructor if alleged IANA ID is invalidEdward Welbourne2021-04-201-0/+3
* Fix bug in QDateTimeParser::findTimeZoneName()'s length-limitingEdward Welbourne2021-04-201-1/+1
* Handle overflow in QTimeZonePrivate::dataForLocalTime() and its callerEdward Welbourne2021-04-202-19/+27
* Fix another compilation error in QDateTimeEirik Aavitsland2021-04-201-1/+3
* Merge integration refs/builds/qtci/dev/1618564901Qt CI Bot2021-04-162-115/+162
|\
| * Use QTimeZone to determine offsets outside the system-function rangeEdward Welbourne2021-04-162-21/+61
| * Extend time_t-based handling all the way to the end of time_tEdward Welbourne2021-04-161-100/+107
* | Catch invalid offset returns from QTimeZone backendsEdward Welbourne2021-04-162-10/+19
|/
* Add the "Territory" enumerated type for QLocaleJiDe Zhang2021-04-1513-100/+116
* Make POSIX transition rule parser more robustEdward Welbourne2021-04-141-14/+29