From 5beda42d571c5b5c091d681d26d3a6136a203fb9 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 13 Jan 2011 17:31:34 +0100 Subject: [PATCH] * Set initial connection state. --- src/tomahawkwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tomahawkwindow.cpp b/src/tomahawkwindow.cpp index 426ea6793..622c35795 100644 --- a/src/tomahawkwindow.cpp +++ b/src/tomahawkwindow.cpp @@ -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(); }