summaryrefslogtreecommitdiffstats
path: root/src/network/access/qnetworkreplyhttpimpl_p.h
diff options
context:
space:
mode:
authorJonas M. Gastal <jgastal@profusion.mobi>2011-12-22 13:53:38 -0200
committerQt by Nokia <qt-info@nokia.com>2012-01-09 19:18:08 +0100
commit159098719b8e8f40d1bd663c61bdc51f883c645f (patch)
tree028f1bd66b1e055b7a676b52ab2b690692139dae /src/network/access/qnetworkreplyhttpimpl_p.h
parent4669d657d29ae883db746b7cbfed367758943ee9 (diff)
Using proper virtual functions instead of Q_INVOKABLE tricks.
This mantains BC between version compiled with and without OPENSSL, which was the reason for the use of "runtime virtuals". Using proper virtuals should make code clearer. Change-Id: I24f141ebaab68c000c2d602b54addbae1679a424 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/network/access/qnetworkreplyhttpimpl_p.h')
-rw-r--r--src/network/access/qnetworkreplyhttpimpl_p.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/network/access/qnetworkreplyhttpimpl_p.h b/src/network/access/qnetworkreplyhttpimpl_p.h
index 346cc6464c..6c0467add2 100644
--- a/src/network/access/qnetworkreplyhttpimpl_p.h
+++ b/src/network/access/qnetworkreplyhttpimpl_p.h
@@ -94,16 +94,6 @@ public:
void setReadBufferSize(qint64 size);
bool canReadLine () const;
-#ifndef QT_NO_OPENSSL
- void ignoreSslErrors();
- // ### Qt5 Add proper virtual
- Q_INVOKABLE void ignoreSslErrorsImplementation(const QList<QSslError> &errors);
- // ### Qt5 Add proper virtual
- Q_INVOKABLE void setSslConfigurationImplementation(const QSslConfiguration &configuration);
- // ### Qt5 Add proper virtual
- Q_INVOKABLE QSslConfiguration sslConfigurationImplementation() const;
-#endif
-
Q_DECLARE_PRIVATE(QNetworkReplyHttpImpl)
Q_PRIVATE_SLOT(d_func(), void _q_startOperation())
Q_PRIVATE_SLOT(d_func(), void _q_cacheLoadReadyRead())
@@ -135,6 +125,13 @@ public:
Q_PRIVATE_SLOT(d_func(), void emitReplyUploadProgress(qint64, qint64))
+#ifndef QT_NO_OPENSSL
+protected:
+ void ignoreSslErrors();
+ void ignoreSslErrorsImplementation(const QList<QSslError> &errors);
+ void setSslConfigurationImplementation(const QSslConfiguration &configuration);
+ void sslConfigurationImplementation(QSslConfiguration &configuration) const;
+#endif
signals:
// To HTTP thread: