OTHER: running_ = true; in the mainloop thingie so that checking for it

works in synchronous functions.
This commit is contained in:
Jonne Lehtinen 2006-05-27 20:59:05 +03:00 committed by Tobias Rundstrom
parent caf82d8495
commit bebdbae405

View file

@ -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;
}