1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-12 17:34:40 +00:00

Fix use of new Glib API which fails on older Glib build machines

This commit is contained in:
Mukund Sivaraman 2008-09-01 04:54:13 +00:00
parent 0b7fd36077
commit e525c17dc5

View file

@ -608,7 +608,7 @@ appsetup( TrWindow * wind, GSList * torrentFiles,
/* start scheduled rate timer */
updateScheduledLimits (tr_core_handle( cbdata->core ));
g_timeout_add_seconds( 60, updateScheduledLimits, tr_core_handle( cbdata->core ) );
g_timeout_add( 60 * 1000, updateScheduledLimits, tr_core_handle( cbdata->core ) );
/* either show the window or iconify it */
if( !minimized )