diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2011-04-27 16:33:54 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2011-04-28 08:50:42 (GMT) |
commit | 61c6d66b7efd8de4a83b021e7c4ef2b1a803ece2 (patch) | |
tree | 8ee0755a3844074ef80376137455903fc4f1bd59 /src/network/kernel | |
parent | 5e5485809e8c6f8339bb9f19ad71ed623a8b23c7 (diff) | |
download | Qt-61c6d66b7efd8de4a83b021e7c4ef2b1a803ece2.zip Qt-61c6d66b7efd8de4a83b021e7c4ef2b1a803ece2.tar.gz Qt-61c6d66b7efd8de4a83b021e7c4ef2b1a803ece2.tar.bz2 |
Fixes warnings about unused variables
Reviewed-by: Peter Hartmann
Diffstat (limited to 'src/network/kernel')
-rw-r--r-- | src/network/kernel/qhostinfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/kernel/qhostinfo.cpp b/src/network/kernel/qhostinfo.cpp index a16d4ca..8569817 100644 --- a/src/network/kernel/qhostinfo.cpp +++ b/src/network/kernel/qhostinfo.cpp @@ -290,6 +290,7 @@ QHostInfo QHostInfoPrivate::fromName(const QString &name, QSharedPointer<QNetwor // This function has a special implementation for symbian right now in qhostinfo_symbian.cpp but not on other OS. QHostInfo QHostInfoAgent::fromName(const QString &hostName, QSharedPointer<QNetworkSession> networkSession) { + Q_UNUSED(networkSession); return QHostInfoAgent::fromName(hostName); } #endif |