This commit is contained in:
HanzZ 2011-10-11 01:11:24 +02:00
parent 2e77a02291
commit 8105cf9119

View file

@ -100,6 +100,6 @@ void SpectrumEventLoop::post(const Event& event) {
// pass copy of event to main thread
Event *ev = new Event(event);
LOG4CXX_INFO(logger, "posting event to main thread " << ev);
g_main_context_invoke(g_main_loop_get_context(m_loop), processEvent, ev);
// purple_timeout_add(0, processEvent, ev);
// g_main_context_invoke(g_main_loop_get_context(m_loop), processEvent, ev);
purple_timeout_add(0, processEvent, ev);
}