summaryrefslogtreecommitdiffstats
path: root/workspace/LogReceiver/ndgui.cpp
diff options
context:
space:
mode:
authorNiklas2011-08-19 14:53:00 +0200
committerNiklas2011-08-19 14:53:00 +0200
commit74bfbbab2b0012bbfadaf742e92c78bb7bff9e0c (patch)
tree09e823757b75b24fafd19bb9bd41706690a91664 /workspace/LogReceiver/ndgui.cpp
parentadded internet test. each configured interface will be tested if it is possib... (diff)
downloadfbgui-74bfbbab2b0012bbfadaf742e92c78bb7bff9e0c.tar.gz
fbgui-74bfbbab2b0012bbfadaf742e92c78bb7bff9e0c.tar.xz
fbgui-74bfbbab2b0012bbfadaf742e92c78bb7bff9e0c.zip
changed code order. added new signals
Diffstat (limited to 'workspace/LogReceiver/ndgui.cpp')
-rw-r--r--workspace/LogReceiver/ndgui.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/workspace/LogReceiver/ndgui.cpp b/workspace/LogReceiver/ndgui.cpp
index 629a8fb..0e743ed 100644
--- a/workspace/LogReceiver/ndgui.cpp
+++ b/workspace/LogReceiver/ndgui.cpp
@@ -7,6 +7,7 @@ ndgui::ndgui(QWidget *parent)
connect(&logReceiver, SIGNAL(addNewInterface(QString, int)), this, SLOT(addNewInterface(QString, int)));
connect(&logReceiver, SIGNAL(changeProgressBarValue(int , int )), this, SLOT(handleProgress(int, int)));
+ connect(&logReceiver, SIGNAL(connectionEstablished(QString)), this, SLOT(handleConnectionEstablished(QString)));
buildGui();
@@ -93,3 +94,7 @@ void ndgui::handleProgress(int iFaceIndex, int newValue) {
qDebug() << "Error: new value is smaller than the old value!";
}
}
+
+void ndgui::handleConnectionEstablished(QString ifName) {
+
+}