diff options
Diffstat (limited to 'LogReceiver/logreceiver.cpp')
| -rw-r--r-- | LogReceiver/logreceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LogReceiver/logreceiver.cpp b/LogReceiver/logreceiver.cpp index b034013..7f573bf 100644 --- a/LogReceiver/logreceiver.cpp +++ b/LogReceiver/logreceiver.cpp @@ -94,7 +94,7 @@ QList<QString> LogReceiver::getListOfNetworkInterfaces() { continue; } result.append(nI.humanReadableName()); - emit addNewInterface(nI.humanReadableName()); + emit addInterface(nI.humanReadableName()); } } else { qDebug() << "no interfaces found!"; @@ -202,7 +202,7 @@ void LogReceiver::checkConnectivity(QString ifName) { qDebug() << "internet: check passed! for interface" << ifName; emit updateStatusLabel(ifName, "connection possible"); - emit connectionEstablished(ifName, ifConf.getGateway()); + emit connectionEstablished(&ifConf); } } |
