diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2015-01-03 16:59:39 (GMT) |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2015-01-07 21:33:58 (GMT) |
commit | 8d831f5f444802879ae416bd110184d5a6cf1b26 (patch) | |
tree | 36b222be70754495c6a03a99210b781f401c9d5f | |
parent | 48194c74d3e2d2316fa4c57cf8b2e6687d8d6416 (diff) | |
download | Qt-8d831f5f444802879ae416bd110184d5a6cf1b26.zip Qt-8d831f5f444802879ae416bd110184d5a6cf1b26.tar.gz Qt-8d831f5f444802879ae416bd110184d5a6cf1b26.tar.bz2 |
QDateTime: Fix time format in doc
MM stands for month, SS is invalid
Task-number: QTBUG-12236
Change-Id: I9b4a57d05d77fd38db30b53b16c382ea545edb80
(cherry picked from qtbase/a457bf3ff73627aa2c95f0482a838b14fd3233a0)
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r-- | src/corelib/tools/qdatetime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qdatetime.cpp b/src/corelib/tools/qdatetime.cpp index 466f0bb..375d25e 100644 --- a/src/corelib/tools/qdatetime.cpp +++ b/src/corelib/tools/qdatetime.cpp @@ -1533,7 +1533,7 @@ int QTime::msec() const Returns the time as a string. Milliseconds are not included. The \a format parameter determines the format of the string. - If \a format is Qt::TextDate, the string format is HH:MM:SS; e.g. 1 + If \a format is Qt::TextDate, the string format is HH:mm:ss; e.g. 1 second before midnight would be "23:59:59". If \a format is Qt::ISODate, the string format corresponds to the |