--- a/sources/coloredline.cpp Wed Jul 20 15:07:57 2016 +0300 +++ b/sources/coloredline.cpp Wed Jul 20 16:01:10 2016 +0300 @@ -127,11 +127,11 @@ { if (ch == ']') { - String color = m_incomingColorName.to_lowercase(); + String color = m_incomingColorName.toLowerCase(); for (const ColorCodeInfo &colorInfo : colorCodes) { - if (String(colorInfo.name).to_lowercase() == color) + if (String(colorInfo.name).toLowerCase() == color) { activateColor(colorInfo.color, colorInfo.bold); m_colorCodeStage = 0;