Skip to content
Snippets Groups Projects
Commit 78011beb authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

YoutubeService: Don't declare slots within ifdef scope

parent 96e71088
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,6 @@ YouTubeService::networkError( QNetworkReply::NetworkError e )
reply->deleteLater();
}
#ifndef QT_NO_OPENSSL
void
YouTubeService::sslErrors( QNetworkReply* reply, const QList<QSslError> &errors )
{
......@@ -256,4 +255,3 @@ YouTubeService::sslErrors( QNetworkReply* reply, const QList<QSslError> &errors
reply->ignoreSslErrors();
}
}
#endif
......@@ -81,9 +81,7 @@ class YouTubeService : public AbstractSharingService
private slots:
void authError( QString );
void networkError( QNetworkReply::NetworkError );
#ifndef QT_NO_OPENSSL
void sslErrors( QNetworkReply*, const QList<QSslError> &errors );
#endif
};
#endif // YOUTUBESERVICE_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment