Martin Vermeer wrote: > if (color != "none" && color != string())
That should be: if (!color.empty() && color != "none") -- Angus
Martin Vermeer wrote: > if (color != "none" && color != string())
That should be: if (!color.empty() && color != "none") -- Angus