diff options
author | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2012-06-23 21:47:50 +0000 |
---|---|---|
committer | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2012-06-23 21:47:50 +0000 |
commit | 9d72353c29fd320b9ce5260a4e0777a04576d97d (patch) | |
tree | 11d7c3f3939e2b7e24db1da5b6b2d9d8a93f8684 | |
parent | 0070c296459dd3318b99125f803dc793fb8d72e7 (diff) | |
download | lcd4linux-9d72353c29fd320b9ce5260a4e0777a04576d97d.tar.gz |
widget_timer: timer widgets should not abuse timer groups (fixes ticket #278)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1190 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | widget_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widget_timer.c b/widget_timer.c index dec7562..7417287 100644 --- a/widget_timer.c +++ b/widget_timer.c @@ -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); } |