diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-04-06 15:03:12 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-04-06 15:05:12 (GMT) |
commit | 9b3de2a229bfd393a13bcf08750c2284f775d8c5 (patch) | |
tree | ddc966db627e815c3185f55ce51f13d5438a1342 /src/network/access | |
parent | 707012f57bf3abf7ddd829e5752b4e1791250bea (diff) | |
download | Qt-9b3de2a229bfd393a13bcf08750c2284f775d8c5.zip Qt-9b3de2a229bfd393a13bcf08750c2284f775d8c5.tar.gz Qt-9b3de2a229bfd393a13bcf08750c2284f775d8c5.tar.bz2 |
De-inlined 2 functions in QHttpNetworkHeader
RevBy: Thiago
Diffstat (limited to 'src/network/access')
-rw-r--r-- | src/network/access/qhttpnetworkheader_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/access/qhttpnetworkheader_p.h b/src/network/access/qhttpnetworkheader_p.h index ce538c8..306ae85 100644 --- a/src/network/access/qhttpnetworkheader_p.h +++ b/src/network/access/qhttpnetworkheader_p.h @@ -85,8 +85,8 @@ public: QHttpNetworkHeaderPrivate(const QUrl &newUrl = QUrl()); QHttpNetworkHeaderPrivate(const QHttpNetworkHeaderPrivate &other); - inline qint64 contentLength() const; - inline void setContentLength(qint64 length); + qint64 contentLength() const; + void setContentLength(qint64 length); inline QByteArray headerField(const QByteArray &name, const QByteArray &defaultValue = QByteArray()) const; inline QList<QByteArray> headerFieldValues(const QByteArray &name) const; |