mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
fixed oddity in relaySignals methods of XBus proxies
This commit is contained in:
@@ -29,7 +29,7 @@ namespace BlackSimPlugin
|
||||
if (method.methodType() == QMetaMethod::Signal)
|
||||
{
|
||||
m_dbusInterface->connection().connect(m_dbusInterface->service(), m_dbusInterface->path(), m_dbusInterface->interface(),
|
||||
method.name(), this, method.methodSignature());
|
||||
method.name(), this, method.methodSignature().prepend("2"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace BlackSimPlugin
|
||||
if (method.methodType() == QMetaMethod::Signal)
|
||||
{
|
||||
m_dbusInterface->connection().connect(m_dbusInterface->service(), m_dbusInterface->path(), m_dbusInterface->interface(),
|
||||
method.name(), this, method.methodSignature());
|
||||
method.name(), this, method.methodSignature().prepend("2"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user