1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 03:27:40 +01:00

Quit spotify blob if it gets disconnected.

This commit is contained in:
John Maguire 2011-05-25 14:29:10 +00:00
parent f246e44b92
commit 6a10d2a3dc

View File

@ -25,6 +25,7 @@
#include "spotifymessages.pb.h"
#include "core/logging.h"
#include <QCoreApplication>
#include <QDir>
#include <QHostAddress>
#include <QTcpSocket>
@ -80,6 +81,8 @@ SpotifyClient::SpotifyClient(QObject* parent)
connect(handler_, SIGNAL(MessageArrived(protobuf::SpotifyMessage)),
SLOT(HandleMessage(protobuf::SpotifyMessage)));
connect(protocol_socket_, SIGNAL(disconnected()),
QCoreApplication::instance(), SLOT(quit()));
}
SpotifyClient::~SpotifyClient() {