1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-21 05:11:44 +02:00

* Set initial connection state.

This commit is contained in:
Christian Muehlhaeuser
2011-01-13 17:31:34 +01:00
parent ff512d8289
commit 5beda42d57

View File

@@ -177,6 +177,9 @@ TomahawkWindow::setupSignals()
connect( APP->sipHandler(), SIGNAL( connected() ), SLOT( onSipConnected() ) );
connect( APP->sipHandler(), SIGNAL( disconnected() ), SLOT( onSipDisconnected() ) );
connect( APP->sipHandler(), SIGNAL( authError() ), SLOT( onSipError() ) );
// set initial connection state
onSipDisconnected();
}