aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-01-17 09:34:24 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2012-01-17 09:34:24 +0100
commit06706ab8ef3a5fc7448ddfc1f64f92505cd710ee (patch)
treee86b9b17d1ad1515ef4f386fabacb740494ac2f8
parentbe4d08b261f8c8d08d5b28271e2f8234dc7de763 (diff)
downloadbitcoin-06706ab8ef3a5fc7448ddfc1f64f92505cd710ee.tar.xz
Remove erroneous ":" in front of port in options dialog (introduced with network refactor)
-rw-r--r--src/qt/optionsmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp
index 241db345b9..edc1d61e9d 100644
--- a/src/qt/optionsmodel.cpp
+++ b/src/qt/optionsmodel.cpp
@@ -40,7 +40,7 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const
case ProxyIP:
return QVariant(QString::fromStdString(addrProxy.ToStringIP()));
case ProxyPort:
- return QVariant(QString::fromStdString(addrProxy.ToStringPort()));
+ return QVariant(addrProxy.GetPort());
case Fee:
return QVariant(nTransactionFee);
case DisplayUnit: