diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-27 12:07:10 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-27 15:07:10 -0800 |
commit | e895374e4b4dc119a4b45cf2d0f8a50eb6aa89b1 (patch) | |
tree | bd05340b378e1f95502069a402ee71a6c0792bbc /qt-mobile/qmlmanager.cpp | |
parent | ec0fc9d70b679b854fb50d685a5dcfe6f1bf7093 (diff) | |
download | subsurface-e895374e4b4dc119a4b45cf2d0f8a50eb6aa89b1.tar.gz |
QML UI: fix Qt's broken handling of two digit years in dates
Because dives in 1912 are unlikely to be added to my dive log...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qmlmanager.cpp')
-rw-r--r-- | qt-mobile/qmlmanager.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index e80c2c082..5503b3ca3 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -360,8 +360,14 @@ QString QMLManager::commitChanges(QString diveId, QString date, QString location date.replace(drop, ""); } newDate = QDateTime::fromString(date, format); - if (newDate.isValid()) + if (newDate.isValid()) { + // stupid Qt... two digit years are always 19xx - WTF??? + // so if adding a hundred years gets you into something before a year from now... + // add a hundred years. + if (newDate.addYears(100) < QDateTime::currentDateTime().addYears(1)) + newDate = newDate.addYears(100); d->dc.when = d->when = newDate.toMSecsSinceEpoch() / 1000 + gettimezoneoffset(newDate.toMSecsSinceEpoch() / 1000); + } } struct dive_site *ds = get_dive_site_by_uuid(d->dive_site_uuid); char *locationtext = NULL; |