From: Sebastian B. <sb...@us...> - 2013-12-24 08:56:41
|
Update of /cvsroot/simplemail/simplemail/gtk In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28514/gtk Modified Files: subthreads.c Log Message: Fixed problem that millis argument was not used. Index: subthreads.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/gtk/subthreads.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- subthreads.c 24 Dec 2013 08:56:04 -0000 1.28 +++ subthreads.c 24 Dec 2013 08:56:39 -0000 1.29 @@ -417,7 +417,7 @@ if (timer_callback) { - GSource *s = g_timeout_source_new(1); + GSource *s = g_timeout_source_new(millis); g_source_set_callback(s, thread_wait_timer_entry, &data, NULL); g_source_attach(s, t->context); g_source_unref(s); |