From bebdbae40585de149d6f9f09e0f9e6bc97c6cc75 Mon Sep 17 00:00:00 2001 From: Jonne Lehtinen Date: Sat, 27 May 2006 20:59:05 +0300 Subject: [PATCH] OTHER: running_ = true; in the mainloop thingie so that checking for it works in synchronous functions. --- XmmsQT4.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/XmmsQT4.cpp b/XmmsQT4.cpp index 5d9a288..42b3b02 100644 --- a/XmmsQT4.cpp +++ b/XmmsQT4.cpp @@ -22,6 +22,7 @@ XmmsQT4::XmmsQT4 (xmmsc_connection_t *xmmsc) : m_wsock = new QSocketNotifier (m_fd, QSocketNotifier::Write, this); connect (m_wsock, SIGNAL (activated (int)), SLOT (OnWrite ())); m_wsock->setEnabled (false); + running_ = true; }