--- a/sources/interface.cpp Tue Dec 16 00:15:44 2014 +0200 +++ b/sources/interface.cpp Tue Dec 16 00:17:15 2014 +0200 @@ -912,12 +912,12 @@ { if (ch == '\n') { - g_output[g_output.size() - 1].finalize(); + g_output.last().finalize(); g_output << ColoredLine(); continue; } - if (g_output[g_output.size() - 1].length() == 0) + if (g_output.last().length() == 0) { time_t now; time (&now); @@ -925,10 +925,10 @@ strftime (timestamp, sizeof timestamp, "[%H:%M:%S] ", localtime (&now)); for (char* cp = timestamp; *cp != '\0'; ++cp) - g_output[g_output.size() - 1].add_char (*cp); + g_output.last().add_char (*cp); } - g_output[g_output.size() - 1].add_char (ch); + g_output.last().add_char (ch); } g_needOutputRender = true;