Index: sources/wifi/WifiInterface.cpp =================================================================== diff -u -r66506a15ac0234c0a2fcf78d3262fdb91c51cbca -r3e64d98e243484505a44d99b13826097cb6b01eb --- sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 66506a15ac0234c0a2fcf78d3262fdb91c51cbca) +++ sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 3e64d98e243484505a44d99b13826097cb6b01eb) @@ -97,9 +97,6 @@ void WifiInterface::initConnections() { - connect(this, SIGNAL(didStart()), - this, SLOT( onStart())); - connect(this, SIGNAL(didStatusChanged(const QString)), this, SLOT( onStatusChanged(const QString))); @@ -196,7 +193,7 @@ /*! * \brief MessageAcknowModel::quitThread - * \details Moves this object to main thread to be handled by QApplicaiton + * \details Moves this object to main thread to be handled by QApplication * And to be destroyed there. */ void WifiInterface::quitThread() @@ -223,25 +220,16 @@ _init = true; initConnections(); - LOG_DEBUG("UI," + tr("%1 Initialized").arg(metaObject()->className())); + LOG_DEBUG(tr("%1 Initialized").arg(metaObject()->className())); return true; } /*! - * \brief WifiInterface::start + * \brief WifiInterface::ondoStart * Starts the WifiInterface */ -void WifiInterface::start() +void WifiInterface::ondoStart() { - emit didStart({}); -} - -/*! - * \brief WifiInterface::onStart - * Called when the WifiInterface has started - */ -void WifiInterface::onStart() -{ if (hasConnectedToWifi()) rejoinLastWifiNetwork(); }