summaryrefslogtreecommitdiffstats
path: root/src/corelib/time/qdatetime.cpp
Commit message (Expand)AuthorAgeFilesLines
* Make 'zz' format an alias for 'z' in time format stringsEdward Welbourne2022-08-031-6/+49
* QDateTime::Data, QTimeZone: rule-of-five and noexceptEdward Welbourne2022-06-081-3/+3
* Don't std::move() trivally-copyable type; it makes no differenceEdward Welbourne2022-06-081-6/+7
* Simplify construction of two QTime instancesEdward Welbourne2022-06-031-4/+2
* Add MINS_PER_HOUR constant and avoid a Coverity overflow warningEdward Welbourne2022-06-031-8/+9
* Move remaining time_t code from qdatetime.cpp to QLocalTimeEdward Welbourne2022-05-201-336/+5
* Split qtLocalTime out into a new QLocalTime namespaceEdward Welbourne2022-05-201-77/+4
* Replace qt_mktime(), avoiding out-parameters and conversionsEdward Welbourne2022-05-201-115/+131
* Eliminate the msecsToTime() overload with out-parametersEdward Welbourne2022-05-201-26/+12
* Refactor QDateTimePrivate::*MSecsToEpochMSecs()Edward Welbourne2022-05-201-145/+143
* Refactor qt_localtime()Edward Welbourne2022-05-201-85/+87
* QDateTime::setMSecsSinceEpoch(): push more work into a helper functionEdward Welbourne2022-05-201-64/+70
* Fix wrong QDateTime::isValid() to use the right QFlags methodEdward Welbourne2022-05-201-1/+1
* Simplify msecsToTime() and two callers by using QRoundingDownEdward Welbourne2022-05-201-24/+19
* Use SPDX license identifiersLucie Gérard2022-05-161-39/+3
* Correct leap year sequence in systemTimeYearMatching()Edward Welbourne2022-04-251-1/+1
* QDate(Time): add a addDuration methodGiuseppe D'Angelo2022-04-141-0/+42
* QDateTime: add conversions for time_point and zoned_timeGiuseppe D'Angelo2022-04-131-0/+79
* QDate: add conversions for std::chrono calendaring classesGiuseppe D'Angelo2022-04-131-0/+48
* QDateTime: add support for std::chrono::duration arithmeticGiuseppe D'Angelo2022-04-131-0/+69
* Fix overflow issue discovered by MSVC in C++20 modeEdward Welbourne2022-04-051-2/+3
* QDateTimeParser: Correct a comment which was exactly wrongEdward Welbourne2022-04-051-1/+1
* QtCore: Replace remaining uses of QLatin1String with QLatin1StringViewSona Kurazyan2022-03-261-1/+1
* QtCore: replace QLatin1String/QLatin1Char with _L1/u'' where applicableSona Kurazyan2022-03-251-6/+8
* Avoid overflow in some more qdatetime.cpp functionsEdward Welbourne2022-03-251-28/+36
* QDateTime: enable larger ShortData for bootstrapped buildMarc Mutz2022-03-231-1/+1
* QDateTime: future-proof swap()Marc Mutz2022-03-171-0/+1
* Expand testing of QDateTime's isNull() and isValid()Edward Welbourne2022-02-181-5/+4
* 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