summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorIan Walters <ian.walters@nokia.com>2009-04-07 12:59:44 +1000
committerIan Walters <ian.walters@nokia.com>2009-04-07 12:59:44 +1000
commit7d2593c767d6006ec123cb4564071dbc7948a3fc (patch)
treea1b4f65b922e489b00d408bd586388f05b8c85b9 /src/network
parent0002b0285269f69648a7eede33a1d9df5fab8c53 (diff)
Remove inline keywords, fix compile bug
The compile under OS-X was failing due to unfound symbols. Given that the implementation of these functions is not in the header file, they should not have inline keywords. Removing the inline keywords allowed compilation to succeed. Reviewed-by: Rhys Weatherley
Diffstat (limited to 'src/network')
-rw-r--r--src/network/access/qhttpnetworkheader_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/access/qhttpnetworkheader_p.h b/src/network/access/qhttpnetworkheader_p.h
index 3052309703..4e62352d96 100644
--- a/src/network/access/qhttpnetworkheader_p.h
+++ b/src/network/access/qhttpnetworkheader_p.h
@@ -88,9 +88,9 @@ public:
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;
- inline void setHeaderField(const QByteArray &name, const QByteArray &data);
+ QByteArray headerField(const QByteArray &name, const QByteArray &defaultValue = QByteArray()) const;
+ QList<QByteArray> headerFieldValues(const QByteArray &name) const;
+ void setHeaderField(const QByteArray &name, const QByteArray &data);
bool operator==(const QHttpNetworkHeaderPrivate &other) const;
};