Skip to content

Commit

Permalink
reorder code
Browse files Browse the repository at this point in the history
  • Loading branch information
pvuorela committed Jul 7, 2015
1 parent 35ad1f4 commit d17ba18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connd/qconnectionagent.cpp
Expand Up @@ -56,7 +56,6 @@ QConnectionAgent::QConnectionAgent(QObject *parent) :
{
qDebug() << Q_FUNC_INFO;

connect(netman,SIGNAL(availabilityChanged(bool)),this,SLOT(connmanAvailabilityChanged(bool)));

new ConnAdaptor(this);
QDBusConnection dbus = QDBusConnection::sessionBus();
Expand All @@ -71,6 +70,7 @@ QConnectionAgent::QConnectionAgent(QObject *parent) :

connect(this,SIGNAL(configurationNeeded(QString)),this,SLOT(openConnectionDialog(QString)));

connect(netman,SIGNAL(availabilityChanged(bool)),this,SLOT(connmanAvailabilityChanged(bool)));
connect(netman,SIGNAL(servicesListChanged(QStringList)),this,SLOT(servicesListChanged(QStringList)));
connect(netman,SIGNAL(stateChanged(QString)),this,SLOT(networkStateChanged(QString)));
connect(netman,SIGNAL(offlineModeChanged(bool)),this,SLOT(offlineModeChanged(bool)));
Expand Down

0 comments on commit d17ba18

Please sign in to comment.