Move Desktopdaemon object from heap to stack
There's no point in having the object on the heap. app.exec() will block until the process ends. The connect was also useless because the object was never destroyed.
There's no point in having the object on the heap. app.exec() will block until the process ends. The connect was also useless because the object was never destroyed.