summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Walters <ian.walters@nokia.com>2009-04-07 02:59:44 (GMT)
committerIan Walters <ian.walters@nokia.com>2009-04-07 02:59:44 (GMT)
commit7d2593c767d6006ec123cb4564071dbc7948a3fc (patch)
treea1b4f65b922e489b00d408bd586388f05b8c85b9
parent0002b0285269f69648a7eede33a1d9df5fab8c53 (diff)
downloadQt-7d2593c767d6006ec123cb4564071dbc7948a3fc.zip
Qt-7d2593c767d6006ec123cb4564071dbc7948a3fc.tar.gz
Qt-7d2593c767d6006ec123cb4564071dbc7948a3fc.tar.bz2
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
-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 3052309..4e62352 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;
};