wip(refactor): Improve signal and event handling

This commit is contained in:
Michael Carlberg
2016-12-05 20:41:00 +01:00
parent d45fd76dcd
commit 08be86fbe1
73 changed files with 2228 additions and 2251 deletions

View File

@ -54,7 +54,7 @@ string builder::flush() {
/**
* Insert raw text string
*/
void builder::append(string text) {
void builder::append(const string& text) {
m_output += text;
}