summaryrefslogtreecommitdiffstats
path: root/src/network/kernel/qhostinfo_symbian.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/kernel/qhostinfo_symbian.cpp')
-rw-r--r--src/network/kernel/qhostinfo_symbian.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/network/kernel/qhostinfo_symbian.cpp b/src/network/kernel/qhostinfo_symbian.cpp
index 287021f..e70f2ce 100644
--- a/src/network/kernel/qhostinfo_symbian.cpp
+++ b/src/network/kernel/qhostinfo_symbian.cpp
@@ -89,6 +89,11 @@ QHostInfo QHostInfoAgent::fromName(const QString &hostName)
}
*/
+ //TODO: HACK to return qt-test-server's ip
+ QList<QHostAddress> addresses;
+ addresses.append(QHostAddress("192.168.1.8"));
+ results.setHostName(hostName);
+ results.setAddresses(addresses);
return results;
}