aboutsummaryrefslogtreecommitdiff
path: root/src/qt/optionsmodel.cpp
diff options
context:
space:
mode:
authorAndrey Alekseenko <al42and@gmail.com>2012-12-12 11:31:30 +0400
committerAndrey <al42and@gmail.com>2012-12-12 13:10:02 +0400
commit6a3aef39e70e6da81cbd2484c1721d44f9b02d9a (patch)
tree3c41e41b7197035ee69f5a3f8ae8968052eab9da /src/qt/optionsmodel.cpp
parent622da5df6ec0efc46804321f4b77ea17a9579821 (diff)
downloadbitcoin-6a3aef39e70e6da81cbd2484c1721d44f9b02d9a.tar.xz
OptionsModel now has MapPortUPnP=false if UPNP is not supported
Diffstat (limited to 'src/qt/optionsmodel.cpp')
-rw-r--r--src/qt/optionsmodel.cpp4
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: {