diff options
author | Andrey Alekseenko <al42and@gmail.com> | 2012-12-12 11:31:30 +0400 |
---|---|---|
committer | Andrey <al42and@gmail.com> | 2012-12-12 13:10:02 +0400 |
commit | 6a3aef39e70e6da81cbd2484c1721d44f9b02d9a (patch) | |
tree | 3c41e41b7197035ee69f5a3f8ae8968052eab9da /src/qt | |
parent | 622da5df6ec0efc46804321f4b77ea17a9579821 (diff) |
OptionsModel now has MapPortUPnP=false if UPNP is not supported
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/optionsmodel.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index e3c9413f1b..5dac5a6c45 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -137,7 +137,11 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const case MinimizeToTray: return QVariant(fMinimizeToTray); case MapPortUPnP: +#ifdef USE_UPNP return settings.value("fUseUPnP", GetBoolArg("-upnp", true)); +#else + return QVariant(false); +#endif case MinimizeOnClose: return QVariant(fMinimizeOnClose); case ProxyUse: { |