mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-06 01:06:31 +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:
@@ -123,9 +123,12 @@ int main(int argc, char *argv[])
|
||||
// this runs in the original process and can be directly debugged
|
||||
qDebug();
|
||||
qDebug("--------------------------------------------------------");
|
||||
BlackCore::CDBusServer *dBusServer = new BlackCore::CDBusServer(useSessionBusForServer ? "session" : address);
|
||||
qDebug() << "server" << dBusServer->address() << "connected:" << dBusServer->isConnected();
|
||||
|
||||
BlackCore::CDBusServer *dBusServer = new BlackCore::CDBusServer(useSessionBusForServer ? "session" : address);
|
||||
if (dBusServer->hasQDBusServer())
|
||||
{
|
||||
qDebug() << "server" << dBusServer->qDBusServer()->address() << "connected:" << dBusServer->qDBusServer()->isConnected();
|
||||
}
|
||||
// start client process
|
||||
QStringList args;
|
||||
args << "client";
|
||||
|
||||
Reference in New Issue
Block a user