[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r2019: Call the addBridge() slot when the user presses return in th (in trunk: . src/gui/config)
Author: edmanm
Date: 2007-10-12 23:08:35 -0400 (Fri, 12 Oct 2007)
New Revision: 2019
Modified:
trunk/
trunk/src/gui/config/networkpage.cpp
Log:
r2101@lysithea: edmanm | 2007-10-12 23:08:31 -0400
Call the addBridge() slot when the user presses return in the 'Add Bridge'
text box.
Property changes on: trunk
___________________________________________________________________
svk:merge ticket from /local/vidalia/trunk [r2101] on dc66be73-d13e-47ba-a267-8dc7cda68c65
Modified: trunk/src/gui/config/networkpage.cpp
===================================================================
--- trunk/src/gui/config/networkpage.cpp 2007-10-13 02:58:59 UTC (rev 2018)
+++ trunk/src/gui/config/networkpage.cpp 2007-10-13 03:08:35 UTC (rev 2019)
@@ -55,6 +55,7 @@
this, SLOT(bridgeContextMenuRequested(QPoint)));
connect(ui.listBridges, SIGNAL(itemSelectionChanged()),
this, SLOT(bridgeSelectionChanged()));
+ connect(ui.lineBridge, SIGNAL(returnPressed()), this, SLOT(addBridge()));
ui.lineHttpProxyAddress->setValidator(new DomainValidator(this));
ui.lineHttpProxyPort->setValidator(new QIntValidator(1, 65535, this));