diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-07-25 18:20:40 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-07-24 12:28:06 +0200 |
commit | ed166dfa8284778bc6e42acc2efcafa893f33cec (patch) | |
tree | 86897006c3fd3d25b87be9c24d8a2f183396f60a /src/qt/optionsdialog.h | |
parent | bfd807ff3287f391dcf184b755997fb9d0456a1a (diff) |
[Qt] allow users to set -onion via GUI
- also allow users to see, if the default proxy (-proxy) is used for
reaching peers via IPv6 or Tor
Diffstat (limited to 'src/qt/optionsdialog.h')
-rw-r--r-- | src/qt/optionsdialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/optionsdialog.h b/src/qt/optionsdialog.h index fa983e798c..348489c599 100644 --- a/src/qt/optionsdialog.h +++ b/src/qt/optionsdialog.h @@ -47,6 +47,8 @@ private Q_SLOTS: void showRestartWarning(bool fPersistent = false); void clearStatusLabel(); void doProxyIpChecks(QValidatedLineEdit *pUiProxyIp, int nProxyPort); + /* query the networks, for which the default proxy is used */ + void updateDefaultProxyNets(); Q_SIGNALS: void proxyIpChecks(QValidatedLineEdit *pUiProxyIp, int nProxyPort); @@ -55,7 +57,7 @@ private: Ui::OptionsDialog *ui; OptionsModel *model; QDataWidgetMapper *mapper; - bool fProxyIpValid; + bool fProxyIpsValid; }; #endif // BITCOIN_QT_OPTIONSDIALOG_H |