Composite: Removed 'blend' option for now

This commit is contained in:
Paul Beckingham 2016-04-25 16:19:35 -04:00
parent fe41858189
commit a69e009e8f
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ void Composite::add (
// Walk all strings left to right, selecting the character and color from the
// highest numbered layer. Emit color codes only on edge detection.
//
std::string Composite::str (bool blend) const
std::string Composite::str () const
{
// The strings are broken into a vector of int, for UTF8 support.
std::vector <int> characters;

View file

@ -37,7 +37,7 @@ class Composite
public:
Composite () = default;
void add (const std::string&, std::string::size_type, const Color&);
std::string str (bool blend = false) const;
std::string str () const;
void clear ();
private: