diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-01-17 09:34:24 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-01-17 09:34:24 +0100 |
| commit | 06706ab8ef3a5fc7448ddfc1f64f92505cd710ee (patch) | |
| tree | e86b9b17d1ad1515ef4f386fabacb740494ac2f8 /src/qt/optionsmodel.cpp | |
| parent | fix the build (port IP validation in options to network refactoring) (diff) | |
| download | discoin-06706ab8ef3a5fc7448ddfc1f64f92505cd710ee.tar.xz discoin-06706ab8ef3a5fc7448ddfc1f64f92505cd710ee.zip | |
Remove erroneous ":" in front of port in options dialog (introduced with network refactor)
Diffstat (limited to 'src/qt/optionsmodel.cpp')
| -rw-r--r-- | src/qt/optionsmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 241db345b..edc1d61e9 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: |