mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Date
- Uses a simpler contructor.
This commit is contained in:
parent
67d42b5241
commit
dbbbeb102e
1 changed files with 4 additions and 4 deletions
|
@ -262,7 +262,7 @@ const std::string Date::toString (
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
Date Date::startOfDay () const
|
Date Date::startOfDay () const
|
||||||
{
|
{
|
||||||
return Date (month (), day (), year (), 0, 0, 0);
|
return Date (month (), day (), year ());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -270,19 +270,19 @@ Date Date::startOfWeek () const
|
||||||
{
|
{
|
||||||
Date sow (_t);
|
Date sow (_t);
|
||||||
sow -= (dayOfWeek () * 86400);
|
sow -= (dayOfWeek () * 86400);
|
||||||
return Date (sow.month (), sow.day (), sow.year (), 0, 0, 0);
|
return Date (sow.month (), sow.day (), sow.year ());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
Date Date::startOfMonth () const
|
Date Date::startOfMonth () const
|
||||||
{
|
{
|
||||||
return Date (month (), 1, year (), 0, 0, 0);
|
return Date (month (), 1, year ());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
Date Date::startOfYear () const
|
Date Date::startOfYear () const
|
||||||
{
|
{
|
||||||
return Date (1, 1, year (), 0, 0, 0);
|
return Date (1, 1, year ());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue