Ref T192, onConnectionTerminated was never fired and hence removed

This commit is contained in:
Klaus Basan
2017-11-19 18:58:45 +01:00
parent bb7f38face
commit cc35619bbe
4 changed files with 0 additions and 13 deletions

View File

@@ -123,8 +123,6 @@ void SwiftGuiStd::init()
// signal / slots contexts / timers
bool s = connect(sGui->getWebDataServices(), &CWebDataServices::sharedInfoObjectsRead, this, &SwiftGuiStd::sharedInfoObjectsLoaded, Qt::QueuedConnection);
Q_ASSERT(s);
s = connect(sGui->getIContextNetwork(), &IContextNetwork::connectionTerminated, this, &SwiftGuiStd::onConnectionTerminated, Qt::QueuedConnection);
Q_ASSERT(s);
s = connect(sGui->getIContextNetwork(), &IContextNetwork::connectionStatusChanged, this, &SwiftGuiStd::onConnectionStatusChanged, Qt::QueuedConnection);
Q_ASSERT(s);
s = connect(sGui->getIContextNetwork(), &IContextNetwork::kicked, this, &SwiftGuiStd::onKickedFromNetwork, Qt::QueuedConnection);