Make t specifier for time-zone only apply to date-time
It previously applied to dates and date-times, but was documented as applying to times (and date-times then included it by reference). It's only meaningful for a date-time. Change-Id: Id9e8e8cb987b03e5ddc77b05c581b9b6944065fc Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
5c1446e3fa
commit
89dc1a1865
@ -2533,7 +2533,6 @@ QT_WARNING_POP
|
|||||||
\row \li ap or a
|
\row \li ap or a
|
||||||
\li Interpret as an am/pm time. \e a/ap will match a lower-case version
|
\li Interpret as an am/pm time. \e a/ap will match a lower-case version
|
||||||
of either QLocale::amText() or QLocale::pmText().
|
of either QLocale::amText() or QLocale::pmText().
|
||||||
\row \li t \li the timezone (for example "CEST")
|
|
||||||
\endtable
|
\endtable
|
||||||
|
|
||||||
All other input characters will be treated as text. Any non-empty sequence
|
All other input characters will be treated as text. Any non-empty sequence
|
||||||
@ -5478,8 +5477,15 @@ QT_WARNING_POP
|
|||||||
|
|
||||||
Uses the calendar \a cal if supplied, else Gregorian.
|
Uses the calendar \a cal if supplied, else Gregorian.
|
||||||
|
|
||||||
See QDate::fromString() and QTime::fromString() for the expressions
|
In addition to the expressions, recognized in the format string to represent
|
||||||
recognized in the format string to represent parts of the date and time.
|
parts of the date and time, by QDate::fromString() and QTime::fromString(),
|
||||||
|
this method supports:
|
||||||
|
|
||||||
|
\table
|
||||||
|
\header \li Expression \li Output
|
||||||
|
\row \li t \li the timezone (for example "CEST")
|
||||||
|
\endtable
|
||||||
|
|
||||||
All other input characters will be treated as text. Any non-empty sequence
|
All other input characters will be treated as text. Any non-empty sequence
|
||||||
of characters enclosed in single quotes will also be treated (stripped of
|
of characters enclosed in single quotes will also be treated (stripped of
|
||||||
the quotes) as text and not be interpreted as expressions.
|
the quotes) as text and not be interpreted as expressions.
|
||||||
|
@ -525,7 +525,7 @@ bool QDateTimeParser::parseFormat(const QString &newFormat)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
if (parserType != QMetaType::QTime) {
|
if (parserType == QMetaType::QDateTime) {
|
||||||
const SectionNode sn = { TimeZoneSection, i - add, countRepeat(newFormat, i, 4), 0 };
|
const SectionNode sn = { TimeZoneSection, i - add, countRepeat(newFormat, i, 4), 0 };
|
||||||
newSectionNodes.append(sn);
|
newSectionNodes.append(sn);
|
||||||
appendSeparator(&newSeparators, newFormat, index, i - index, lastQuote);
|
appendSeparator(&newSeparators, newFormat, index, i - index, lastQuote);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user