add parentheses to old style signal

This commit is contained in:
Stephen Birarda 2016-01-20 09:27:47 -08:00
parent 2ead8c6f28
commit e69424e155

View file

@ -817,7 +817,7 @@ void LimitedNodeList::startSTUNPublicSocketUpdate() {
connect(&_stunSockAddr, &HifiSockAddr::lookupCompleted, this, &LimitedNodeList::sendSTUNRequest);
// start the initial STUN timer once we know the socket
connect(&_stunSockAddr, SIGNAL(lookupCompleted), _initialSTUNTimer, SLOT(start()));
connect(&_stunSockAddr, SIGNAL(lookupCompleted()), _initialSTUNTimer, SLOT(start()));
// in case we just completely fail to lookup the stun socket - add a 10s single shot that will trigger the fail case
const quint64 STUN_DNS_LOOKUP_TIMEOUT_MSECS = 10 * 1000;