aboutsummaryrefslogtreecommitdiffstats
path: root/widget_image.c
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-02-07 14:03:46 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-02-07 14:03:46 +0000
commit7496af7c8678b4ee97f9913b26dad028149eed79 (patch)
tree008656e48fb0026a7c36f4812757f53fb72b8423 /widget_image.c
parentdcb29d2726791b4b770d4b36d27ee81d79a38f9e (diff)
downloadlcd4linux-7496af7c8678b4ee97f9913b26dad028149eed79.tar.gz
added grouping of widgets by update interval (new file "timer_group.c")
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1106 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'widget_image.c')
-rw-r--r--widget_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widget_image.c b/widget_image.c
index 688f6c8..8d997a9 100644
--- a/widget_image.c
+++ b/widget_image.c
@@ -59,7 +59,7 @@
#include "cfg.h"
#include "qprintf.h"
#include "property.h"
-#include "timer.h"
+#include "timer_group.h"
#include "widget.h"
#include "widget_image.h"
#include "rgb.h"
@@ -195,7 +195,7 @@ static void widget_image_update(void *Self)
/* add a new one-shot timer */
if (P2N(&Image->update) > 0) {
- timer_add(widget_image_update, Self, P2N(&Image->update), 1);
+ timer_add_widget(widget_image_update, Self, P2N(&Image->update), 1);
}
}