mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-30 11:27:19 +02:00
CLI
- Renamed unsweetenAtts to unsweetenAttributes, unsweetenAttMods to unsweetenAttributeModifiers.
This commit is contained in:
parent
0603711aac
commit
932865d3b5
2 changed files with 6 additions and 6 deletions
|
@ -292,8 +292,8 @@ const std::string CLI::getFilter ()
|
||||||
{
|
{
|
||||||
// Remove all the syntactic sugar.
|
// Remove all the syntactic sugar.
|
||||||
unsweetenTags ();
|
unsweetenTags ();
|
||||||
unsweetenAtts ();
|
unsweetenAttributes ();
|
||||||
unsweetenAttMods ();
|
unsweetenAttributeModifiers ();
|
||||||
// TODO all the other types: pattern, id, uuid ...
|
// TODO all the other types: pattern, id, uuid ...
|
||||||
|
|
||||||
std::string filter = "";
|
std::string filter = "";
|
||||||
|
@ -547,7 +547,7 @@ void CLI::unsweetenTags ()
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// <name>:['"][<value>]['"] --> name = value
|
// <name>:['"][<value>]['"] --> name = value
|
||||||
void CLI::unsweetenAtts ()
|
void CLI::unsweetenAttributes ()
|
||||||
{
|
{
|
||||||
std::vector <A> reconstructed;
|
std::vector <A> reconstructed;
|
||||||
std::vector <A>::iterator a;
|
std::vector <A>::iterator a;
|
||||||
|
@ -633,7 +633,7 @@ void CLI::unsweetenAtts ()
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// <name>.<mod>[:=]['"]<value>['"] --> name <op> value
|
// <name>.<mod>[:=]['"]<value>['"] --> name <op> value
|
||||||
void CLI::unsweetenAttMods ()
|
void CLI::unsweetenAttributeModifiers ()
|
||||||
{
|
{
|
||||||
std::vector <A> reconstructed;
|
std::vector <A> reconstructed;
|
||||||
std::vector <A>::iterator a;
|
std::vector <A>::iterator a;
|
||||||
|
|
|
@ -77,8 +77,8 @@ private:
|
||||||
bool exactMatch (const std::string&, const std::string&) const;
|
bool exactMatch (const std::string&, const std::string&) const;
|
||||||
bool canonicalize (std::string&, const std::string&, const std::string&) const;
|
bool canonicalize (std::string&, const std::string&, const std::string&) const;
|
||||||
void unsweetenTags ();
|
void unsweetenTags ();
|
||||||
void unsweetenAtts ();
|
void unsweetenAttributes ();
|
||||||
void unsweetenAttMods ();
|
void unsweetenAttributeModifiers ();
|
||||||
void dump (const std::string&) const;
|
void dump (const std::string&) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue