Fix error in countDays() function

This commit is contained in:
Mark Watkins 2011-12-26 13:31:45 +10:00
parent b16231a599
commit 3d8ef6cc89

View File

@ -561,7 +561,7 @@ int Profile::countDays(MachineType mt, QDate start, QDate end)
if ((mt==MT_UNKNOWN) || (day->machine->GetType()==mt)) days++;
}
date=date.addDays(1);
} while (date<end);
} while (date<=end);
return days;
}