mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
refs #382, reviewed audio context handling
* only init QDbusServer for P2P * changed init order of contexts in runtime * use "fake" signal to call setComVoiceRooms (remote in GUI) * added slot to change voice room callsign * used "org.swift" instead of "net.vatim" (just style) * used const QString for serviceName * added correct copyright header (just style)
This commit is contained in:
@@ -19,10 +19,9 @@ namespace BlackMisc
|
||||
public:
|
||||
|
||||
//! Constructor
|
||||
CGenericDBusInterface(const QString &serverName, const QString &path, const QString &interfaceName, const QDBusConnection &connection, QObject *parent = 0) :
|
||||
QDBusAbstractInterface(serverName, path, interfaceName.toUtf8().constData(), connection, parent)
|
||||
{
|
||||
}
|
||||
CGenericDBusInterface(const QString &serviceName, const QString &path, const QString &interfaceName, const QDBusConnection &connection, QObject *parent = 0) :
|
||||
QDBusAbstractInterface(serviceName, path, interfaceName.toUtf8().constData(), connection, parent)
|
||||
{ }
|
||||
|
||||
//! Call DBus, no return value
|
||||
template <typename... Args>
|
||||
|
||||
Reference in New Issue
Block a user