refs #246 passing c++11 brace-initialized QStringList to CRuntime::logSlot

This commit is contained in:
Mathew Sutcliffe
2014-06-11 19:35:32 +01:00
parent cdd0ae6324
commit 26c270c9a6
3 changed files with 20 additions and 4 deletions

View File

@@ -250,6 +250,16 @@ namespace BlackCore
qDebug() << func << p1 << p2 << p3 << p4;
}
void CRuntime::logSlot(const char *func, const QString &param) const
{
qDebug() << func << param;
}
void CRuntime::logSlot(const char *func, const QStringList &params) const
{
qDebug() << func << params;
}
void CRuntime::logSlot(const char *func, bool boolValue) const
{
qDebug() << func << boolValue;