mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Dates
- Converted ::isDay to use Date::dayOfWeek.
This commit is contained in:
parent
d5919d9608
commit
c54a17089a
1 changed files with 2 additions and 19 deletions
|
@ -32,16 +32,6 @@
|
||||||
#include <Date.h>
|
#include <Date.h>
|
||||||
#include <i18n.h>
|
#include <i18n.h>
|
||||||
|
|
||||||
static const char* days[] =
|
|
||||||
{
|
|
||||||
"sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday",
|
|
||||||
};
|
|
||||||
|
|
||||||
static const char* days_short[] =
|
|
||||||
{
|
|
||||||
"sun", "mon", "tue", "wed", "thu", "fri", "sat",
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
static bool isMonth (const std::string& name, int& i)
|
static bool isMonth (const std::string& name, int& i)
|
||||||
{
|
{
|
||||||
|
@ -52,15 +42,8 @@ static bool isMonth (const std::string& name, int& i)
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
static bool isDay (const std::string& name, int& i)
|
static bool isDay (const std::string& name, int& i)
|
||||||
{
|
{
|
||||||
/*
|
i = Date::dayOfWeek (name);
|
||||||
i = Date::dayOfWeek (name) - 1;
|
return i != -1 ? true : false;
|
||||||
return i != -2 ? true : false;
|
|
||||||
*/
|
|
||||||
for (i = 0; i < 7; i++)
|
|
||||||
if (name == days[i] || name == days_short[i])
|
|
||||||
return true;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue