author | ulf69 <ulf69> | 2004-10-18 03:01:17 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-10-18 03:01:17 (UTC) |
commit | 1712d92ea25b220273859d985bc7211fa7a97a39 (patch) (side-by-side diff) | |
tree | 00b603af10b0da8d757ffec5c29f73953fbf03e0 | |
parent | 2fd3f09238a624b1a91793d43b5f3653e2b34763 (diff) | |
download | kdepimpi-1712d92ea25b220273859d985bc7211fa7a97a39.zip kdepimpi-1712d92ea25b220273859d985bc7211fa7a97a39.tar.gz kdepimpi-1712d92ea25b220273859d985bc7211fa7a97a39.tar.bz2 |
return a real empty value in readDateTime
-rw-r--r-- | microkde/kdecore/klocale.cpp | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/microkde/kdecore/klocale.cpp b/microkde/kdecore/klocale.cpp index 8b4513e..27acfec 100644 --- a/microkde/kdecore/klocale.cpp +++ b/microkde/kdecore/klocale.cpp @@ -336,14 +336,18 @@ QString KLocale::formatDateTime(const QDateTime &pDateTime, format = "%1 %2"; else if ( intIntDateFormat == Format1 ) format = "%1 %2"; else if ( intIntDateFormat == ISODate ) format = "%1T%2"; - return format.arg(formatDate( pDateTime.date(), shortFormat, intIntDateFormat )) + QString res = format.arg(formatDate( pDateTime.date(), shortFormat, intIntDateFormat )) .arg(formatTime( pDateTime.time(), includeSeconds , intIntDateFormat )); + + //qDebug("KLocale::formatDateTime transformed %s, into %s", pDateTime.toString().latin1(), res.latin1() ); + + return res; } QString KLocale::formatDateTime(const QDateTime &pDateTime, IntDateFormat intIntDateFormat) const { return formatDateTime(pDateTime, true, true, intIntDateFormat); } @@ -598,24 +602,30 @@ QDateTime KLocale::readDateTime(const QString &intstr, QString dformat = dateFormat(intIntDateFormat); QString tformat = timeFormat(intIntDateFormat); QDate m_date = readDate(date, dformat, &ok1); QTime m_time = readTime(time, tformat, &ok2); + QDateTime m_dt; + if (ok) { if ((ok1 == false) || (ok2 == false)) *ok = false; else *ok = true; } - QDateTime m_dt; + + //only set values if both operations returned true. + if ((ok1 == true) && (ok2 == true)) + { m_dt.setDate(m_date); m_dt.setTime(m_time); + } - qDebug("KLocale::readDateTime() transformed %s into %s (%s), %s (%s) : err1=%i, err2=%i", intstr.latin1(), date.latin1(), dformat.latin1(), time.latin1(), tformat.latin1(), ok1, ok2); + //qDebug("KLocale::readDateTime() transformed %s into %s (%s), %s (%s) : err1=%i, err2=%i", intstr.latin1(), date.latin1(), dformat.latin1(), time.latin1(), tformat.latin1(), ok1, ok2); return m_dt; } QDate KLocale::readDate(const QString &intstr, IntDateFormat intIntDateFormat, bool* ok) const |