This commit is contained in:
Klaus Basan
2020-04-09 00:45:23 +02:00
committed by Mat Sutcliffe
parent 9eaeb0f52b
commit 004173b052

View File

@@ -157,7 +157,7 @@ int main(int argc, char *argv[])
// this runs in the original process and can be directly debugged // this runs in the original process and can be directly debugged
out << "--------------------------------------------------------" << endl; out << "--------------------------------------------------------" << endl;
BlackMisc::CDBusServer *dBusServer = new BlackMisc::CDBusServer(useSessionBusForServer ? "session" : address); CDBusServer *dBusServer = new CDBusServer(useSessionBusForServer ? "session" : address);
if (dBusServer->hasQDBusServer()) if (dBusServer->hasQDBusServer())
{ {
out << "server" << dBusServer->qDBusServer()->address() out << "server" << dBusServer->qDBusServer()->address()
@@ -184,7 +184,7 @@ int main(int argc, char *argv[])
} }
// testing in new process // testing in new process
BlackMisc::CProcessCtrl::startDetached(executable, args, true); CProcessCtrl::startDetached(executable, args, true);
// testing in same process // testing in same process
// BlackSample::ServiceTool::dataTransferTestClient(address); // BlackSample::ServiceTool::dataTransferTestClient(address);