Guest User

Untitled

a guest
May 20th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. channelInfoReader = new QNetworkAccessManager(this);
  2. connect(channelInfoReader, SIGNAL(finished(QNetworkReply*)), this, SLOT(finishReadingChannelInfo(QNetworkReply*)));
  3.  
  4. void ServerComm::updateChannelInfo(QString channelId)
  5. {
  6.     currentPlayedChannel = channelId;
  7.     channelInfoReader->get(QNetworkRequest(CHANNEL_REFRESH_URL));
  8. }
  9.  
  10. void ServerComm::finishReadingChannelInfo(QNetworkReply *reply)
  11. {
  12.  
  13. }
Add Comment
Please, Sign In to add comment