mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
refs #246 passing c++11 brace-initialized QStringList to CRuntime::logSlot
This commit is contained in:
@@ -250,6 +250,16 @@ namespace BlackCore
|
||||
qDebug() << func << p1 << p2 << p3 << p4;
|
||||
}
|
||||
|
||||
void CRuntime::logSlot(const char *func, const QString ¶m) const
|
||||
{
|
||||
qDebug() << func << param;
|
||||
}
|
||||
|
||||
void CRuntime::logSlot(const char *func, const QStringList ¶ms) const
|
||||
{
|
||||
qDebug() << func << params;
|
||||
}
|
||||
|
||||
void CRuntime::logSlot(const char *func, bool boolValue) const
|
||||
{
|
||||
qDebug() << func << boolValue;
|
||||
|
||||
Reference in New Issue
Block a user