Skip to content
Snippets Groups Projects
Commit ba0ef0a0 authored by Don Gagne's avatar Don Gagne
Browse files

Can't use interface as variable on Windows

parent 2af98191
Branches
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment