コード例 #1
0
ファイル: clientdataref.cpp プロジェクト: Trakk77/ExtPlane
void ClientDataRef::unsubscribe() {
    emit unsubscribed(this);
}
コード例 #2
0
ファイル: youtube.cpp プロジェクト: cuiboand1/ytd-meego
void YouTube::unsubscribeToChannel(const QString &subscriptionId) {
    QUrl url("http://gdata.youtube.com/feeds/api/users/" + currentUser + "/subscriptions/" + subscriptionId);
    deleteRequest(url);
    connect(this, SIGNAL(postSuccessful()), this, SIGNAL(unsubscribed()));
}
コード例 #3
0
ファイル: qmqtt_client.cpp プロジェクト: ehntoo/qmqtt
void Client::unsubscribe(const QString &topic)
{
    pd_func()->sendUnsubscribe(topic);
    emit unsubscribed(topic);
}