Commit ba0ef0a0 authored by Don Gagne's avatar Don Gagne

Can't use interface as variable on Windows

parent 2af98191
......@@ -132,9 +132,9 @@ QList<LinkInterface*> LinkManager::getLinksForProtocol(ProtocolInterface* protoc
ProtocolInterface* LinkManager::getProtocolForLink(LinkInterface* link)
{
_dataMutex.lock();
ProtocolInterface* interface = _protocolLinks.key(link);
ProtocolInterface* protocol = _protocolLinks.key(link);
_dataMutex.unlock();
return interface;
return protocol;
}
bool LinkManager::connectAll()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment