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
1 changed files with 3 additions and 0 deletions

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() {