Disable map upnp option if built without USE_UPNP
authorWladimir J. van der Laan <laanwj@gmail.com>
Sun, 5 Jun 2011 10:43:18 +0000 (12:43 +0200)
committerWladimir J. van der Laan <laanwj@gmail.com>
Sun, 5 Jun 2011 10:43:18 +0000 (12:43 +0200)
gui/src/optionsdialog.cpp

index 8e7f403..1ec777c 100644 (file)
@@ -207,6 +207,10 @@ MainOptionsPage::MainOptionsPage(QWidget *parent):
 
     connect(connect_socks4, SIGNAL(toggled(bool)), proxy_ip, SLOT(setEnabled(bool)));
     connect(connect_socks4, SIGNAL(toggled(bool)), proxy_port, SLOT(setEnabled(bool)));
+
+#ifndef USE_UPNP
+    map_port_upnp->setDisabled(true);
+#endif
 }
 
 void MainOptionsPage::setMapper(MonitoredDataMapper *mapper)