From 932865d3b5330a806c25425b8c9ae3d4354b804c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 16 Oct 2014 00:39:56 -0400 Subject: [PATCH] CLI - Renamed unsweetenAtts to unsweetenAttributes, unsweetenAttMods to unsweetenAttributeModifiers. --- src/CLI.cpp | 8 ++++---- src/CLI.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index c7e2959ac..dcbe1051a 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -292,8 +292,8 @@ const std::string CLI::getFilter () { // Remove all the syntactic sugar. unsweetenTags (); - unsweetenAtts (); - unsweetenAttMods (); + unsweetenAttributes (); + unsweetenAttributeModifiers (); // TODO all the other types: pattern, id, uuid ... std::string filter = ""; @@ -547,7 +547,7 @@ void CLI::unsweetenTags () //////////////////////////////////////////////////////////////////////////////// // :['"][]['"] --> name = value -void CLI::unsweetenAtts () +void CLI::unsweetenAttributes () { std::vector reconstructed; std::vector ::iterator a; @@ -633,7 +633,7 @@ void CLI::unsweetenAtts () //////////////////////////////////////////////////////////////////////////////// // .[:=]['"]['"] --> name value -void CLI::unsweetenAttMods () +void CLI::unsweetenAttributeModifiers () { std::vector reconstructed; std::vector ::iterator a; diff --git a/src/CLI.h b/src/CLI.h index d8f254641..cbf70dbfa 100644 --- a/src/CLI.h +++ b/src/CLI.h @@ -77,8 +77,8 @@ private: bool exactMatch (const std::string&, const std::string&) const; bool canonicalize (std::string&, const std::string&, const std::string&) const; void unsweetenTags (); - void unsweetenAtts (); - void unsweetenAttMods (); + void unsweetenAttributes (); + void unsweetenAttributeModifiers (); void dump (const std::string&) const; public: