]> git.webhop.me Git - lcd4linux.git/commitdiff
widget_timer: timer widgets should not abuse timer groups (fixes ticket #278)
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Sat, 23 Jun 2012 21:47:50 +0000 (21:47 +0000)
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Sat, 23 Jun 2012 21:47:50 +0000 (21:47 +0000)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1190 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

widget_timer.c

index dec7562856ce06e430f4792dc18f86100a837a81..74172876f9f4b02e1a25694e60b9140effe85a28 100644 (file)
@@ -72,7 +72,7 @@ void widget_timer_update(void *Self)
     }
 
     /* add a new one-shot timer */
-    timer_add_widget(widget_timer_update, Self, update, 1);
+    timer_add(widget_timer_update, Self, update, 1);
 }