remove an unecessary reference to loop

This commit is contained in:
Stephen Birarda 2014-07-29 10:52:14 -07:00
parent 133e8570a3
commit 9a7267a10c

View file

@ -415,7 +415,7 @@ void AudioMixer::run() {
// block until we get the settingsRequestComplete signal
QEventLoop loop;
loop.connect(&domainHandler, &DomainHandler::settingsRequestComplete, &loop, &QEventLoop::quit);
connect(&domainHandler, &DomainHandler::settingsRequestComplete, &loop, &QEventLoop::quit);
domainHandler.requestDomainSettings();
loop.exec();