introduce a appendMessage overload not requiring the 'this' parameter

This commit is contained in:
hjk
2011-01-07 18:57:54 +01:00
parent 4170843f52
commit 1b1663a289
8 changed files with 52 additions and 48 deletions

View File

@@ -367,3 +367,8 @@ void RunControl::bringApplicationToForegroundInternal()
}
#endif
}
void RunControl::appendMessage(const QString &msg, OutputFormat format)
{
emit appendMessage(this, msg, format);
}