Skip to content

Commit

Permalink
fix invalid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
antony-jr committed Oct 24, 2019
1 parent 9f1c1a5 commit 4eebaf2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/zsyncremotecontrolfileparser_p.cc
Original file line number Diff line number Diff line change
Expand Up @@ -415,11 +415,9 @@ void ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed(void) {
/* Cut all ties. */
disconnect(senderReply, SIGNAL(error(QNetworkReply::NetworkError)),
this, SLOT(handleNetworkError(QNetworkReply::NetworkError)));
disconnect(reply, &QNetworkReply::finished,
disconnect(senderReply, &QNetworkReply::finished,
this,
&ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed,
Qt::UniqueConnection);

&ZsyncRemoteControlFileParserPrivate::handleGithubMarkdownParsed);
QByteArray html = senderReply->readAll();
s_ReleaseNotes = QString::fromLatin1(html);
senderReply->deleteLater();
Expand Down

0 comments on commit 4eebaf2

Please sign in to comment.