aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/scrobbler/lastfmscrobbler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/scrobbler/lastfmscrobbler.h')
-rw-r--r--src/plugins/General/scrobbler/lastfmscrobbler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/General/scrobbler/lastfmscrobbler.h b/src/plugins/General/scrobbler/lastfmscrobbler.h
index cf0c2609e..c9385670e 100644
--- a/src/plugins/General/scrobbler/lastfmscrobbler.h
+++ b/src/plugins/General/scrobbler/lastfmscrobbler.h
@@ -94,6 +94,7 @@ public:
explicit LastfmAuth(QObject *parent = 0);
void getToken();
void getSession();
+ void checkSession(const QString &session);
QString session() const;
enum ErrorType
@@ -106,6 +107,7 @@ public:
signals:
void tokenRequestFinished(int error);
void sessionRequestFinished(int error);
+ void checkSessionFinished(int error);
private slots:
void processResponse(QNetworkReply *reply);
@@ -114,7 +116,7 @@ private:
QString m_token, m_session;
QByteArray m_ua;
QNetworkAccessManager *m_http;
- QNetworkReply *m_getTokenReply, *m_getSessionReply;
+ QNetworkReply *m_getTokenReply, *m_getSessionReply, *m_checkSessionReply;
};
#endif