diff options
| author | Niklas | 2011-09-23 14:08:55 +0200 |
|---|---|---|
| committer | Niklas | 2011-09-23 14:08:55 +0200 |
| commit | 0216e9aadb7e794037d3cf553b05474de8322a74 (patch) | |
| tree | fb4c699a56a459d9f4b628a5f66b19796de23f5c /LogReceiver/ndgui.cpp | |
| parent | changed the css file for the networkdiscovery. now it looks a bit nicer (diff) | |
| download | fbgui-0216e9aadb7e794037d3cf553b05474de8322a74.tar.gz fbgui-0216e9aadb7e794037d3cf553b05474de8322a74.tar.xz fbgui-0216e9aadb7e794037d3cf553b05474de8322a74.zip | |
renamed the logreceiver to networkdiscovery and deleted the abortbootdialog and chooseinterfacedialog since this is now implemented via html/css/jquery
Diffstat (limited to 'LogReceiver/ndgui.cpp')
| -rw-r--r-- | LogReceiver/ndgui.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/LogReceiver/ndgui.cpp b/LogReceiver/ndgui.cpp index 0394926..624bbde 100644 --- a/LogReceiver/ndgui.cpp +++ b/LogReceiver/ndgui.cpp @@ -3,13 +3,13 @@ ndgui::ndgui(QMainWindow *parent) : QMainWindow(parent) { - connect(&logReceiver, SIGNAL(addInterface(const QString &)), this, SLOT(addInterface( const QString &))); - connect(&logReceiver, SIGNAL(changeProgressBarValue(const QString & , const int& )), this, SLOT(updateIfProgressBar(const QString & , const int&))); - //connect(&logReceiver, SIGNAL(connectionEstablished(interfaceconfiguration*)), this, SLOT(handleConnectionEstablished(interfaceconfiguration*))); - connect(&logReceiver, SIGNAL(abortBoot(QString)), this, SLOT(abortBoot(const QString))); - connect(&logReceiver, SIGNAL(updateStatusLabel(QString,QString)), this, SLOT(updateIfStatus(const QString &, const QString &))); - //connect(&logReceiver, SIGNAL(allProcessesFinished()), this, SLOT(handleAllProcessesFinished())); - connect(&logReceiver, SIGNAL(continueBoot(QString, bool)), this, SLOT(continueBoot(QString, bool))); + connect(&networkDiscovery, SIGNAL(addInterface(const QString &)), this, SLOT(addInterface( const QString &))); + connect(&networkDiscovery, SIGNAL(changeProgressBarValue(const QString & , const int& )), this, SLOT(updateIfProgressBar(const QString & , const int&))); + //connect(&networkDiscovery, SIGNAL(connectionEstablished(interfaceconfiguration*)), this, SLOT(handleConnectionEstablished(interfaceconfiguration*))); + connect(&networkDiscovery, SIGNAL(abortBoot(QString)), this, SLOT(abortBoot(const QString))); + connect(&networkDiscovery, SIGNAL(updateStatusLabel(QString,QString)), this, SLOT(updateIfStatus(const QString &, const QString &))); + //connect(&networkDiscovery, SIGNAL(allProcessesFinished()), this, SLOT(handleAllProcessesFinished())); + connect(&networkDiscovery, SIGNAL(continueBoot(QString, bool)), this, SLOT(continueBoot(QString, bool))); _started = false; @@ -37,7 +37,7 @@ ndgui::~ndgui() { void ndgui::startNetworkDiscovery(){ if(!_started) { _started = true; - logReceiver.initAndRun("/var/tmp/qt_c_socket_custom"); + networkDiscovery.initAndRun("/var/tmp/qt_c_socket_custom"); } else { qDebug() << "NetworkDiscovery already started"; |
