fix the build (port IP validation in options to network refactoring)

This commit is contained in:
Wladimir J. van der Laan 2012-01-17 09:27:03 +01:00
parent b2a967cd0b
commit be4d08b261
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in
case ProxyIP: case ProxyIP:
{ {
// Use CAddress to parse and check IP // Use CAddress to parse and check IP
CAddress addr(value.toString().toStdString() + ":1"); CNetAddr addr(value.toString().toStdString());
if (addr.IsValid()) if (addr.IsValid())
{ {
addrProxy.SetIP(addr); addrProxy.SetIP(addr);