mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Fix removing of wallpaper
This commit is contained in:
parent
23e6601d10
commit
476d1b6a34
@ -49,7 +49,12 @@ public:
|
|||||||
connect(m_socket, &QLocalSocket::disconnected, this, &SDKConnection::close);
|
connect(m_socket, &QLocalSocket::disconnected, this, &SDKConnection::close);
|
||||||
}
|
}
|
||||||
~SDKConnection (){
|
~SDKConnection (){
|
||||||
qDebug() << "Terminating connection object";
|
|
||||||
|
// We need to call this manually because
|
||||||
|
// sometimes it wont close the connection in
|
||||||
|
// the descructor
|
||||||
|
m_socket->disconnect();
|
||||||
|
m_socket->disconnectFromServer();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString appID() const
|
QString appID() const
|
||||||
|
Loading…
Reference in New Issue
Block a user