summaryrefslogtreecommitdiffstats
path: root/LogReceiver/logreceiver.cpp
diff options
context:
space:
mode:
authorNiklas2011-09-21 16:59:09 +0200
committerNiklas2011-09-21 16:59:09 +0200
commit3b81d83bf449ef6242489805af15b7da7b197d58 (patch)
tree26f78d0c6321a11acccf6418deb557033268a28c /LogReceiver/logreceiver.cpp
parentthe checkConnectivity method is working now. we use the rtnl functions of the... (diff)
downloadfbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.gz
fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.xz
fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.zip
gui is now html based. still some problems with the jQuery stuff. it does not display anything.
Diffstat (limited to 'LogReceiver/logreceiver.cpp')
-rw-r--r--LogReceiver/logreceiver.cpp4
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);
}
}