mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Handle negative dates (before the epoch) better
The Qt model sorting for the dive date was using a unsigned number, which doesn't work for dates before 1970. Also, the dive date parsing got the year 1900 wrong. Not that we really care, because other parts of date handling will screw up with any date before the year 1904. So if you claim to be diving before 1904, you get basically random behavior. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c5b9cfcaf6
commit
0cf4104dc6
2 changed files with 3 additions and 3 deletions
|
@ -108,7 +108,7 @@ timestamp_t utc_mktime(struct tm *tm)
|
|||
/* First normalize relative to 1900 */
|
||||
if (year < 50)
|
||||
year += 100;
|
||||
else if (year > 1900)
|
||||
else if (year >= 1900)
|
||||
year -= 1900;
|
||||
|
||||
if (year < 0 || year > 129) /* algo only works for 1900-2099 */
|
||||
|
|
|
@ -94,10 +94,10 @@ QVariant DiveItem::data(int column, int role) const
|
|||
Q_ASSERT(dive != NULL);
|
||||
switch (column) {
|
||||
case NR:
|
||||
retVal = (qulonglong)dive->when;
|
||||
retVal = (qlonglong)dive->when;
|
||||
break;
|
||||
case DATE:
|
||||
retVal = (qulonglong)dive->when;
|
||||
retVal = (qlonglong)dive->when;
|
||||
break;
|
||||
case RATING:
|
||||
retVal = dive->rating;
|
||||
|
|
Loading…
Add table
Reference in a new issue