--- a/sources/interface.cpp Wed Jul 20 15:06:00 2016 +0300 +++ b/sources/interface.cpp Wed Jul 20 15:07:03 2016 +0300 @@ -976,14 +976,14 @@ strftime(timestamp, sizeof timestamp, "[%H:%M:%S] ", localtime(&now)); for (char ch : String(timestamp)) - m_outputLines.last().add_char(ch); + m_outputLines.last().addChar(ch); } // Remove some lines if there's too many of them. 20,000 should be enough, I hope. while (m_outputLines.size() > 20000) m_outputLines.remove_at(0); - m_outputLines.last().add_char(ch); + m_outputLines.last().addChar(ch); } m_needOutputRender = true; @@ -1020,7 +1020,7 @@ for (const String& name : names) { ColoredLine coloredname; - coloredname.add_string(name); + coloredname.addString(name); coloredname.finalize(); m_playerNames.append(coloredname); }