From: Wladimir J. van der Laan Date: Tue, 17 Jan 2012 08:34:24 +0000 (+0100) Subject: Remove erroneous ":" in front of port in options dialog (introduced with network... X-Git-Tag: v0.4.0-unstable~129^2~264^2 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=06706ab8ef3a5fc7448ddfc1f64f92505cd710ee;p=novacoin.git Remove erroneous ":" in front of port in options dialog (introduced with network refactor) --- diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 241db34..edc1d61 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: