Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
78011beb
Commit
78011beb
authored
Aug 02, 2016
by
Hugo Beauzée-Luyssen
Browse files
YoutubeService: Don't declare slots within ifdef scope
parent
96e71088
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Services/YouTube/YouTubeService.cpp
View file @
78011beb
...
...
@@ -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
src/Services/YouTube/YouTubeService.h
View file @
78011beb
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment