diff options
Diffstat (limited to 'widget_timer.c')
-rw-r--r-- | widget_timer.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widget_timer.c b/widget_timer.c index 688e7da..23f8c02 100644 --- a/widget_timer.c +++ b/widget_timer.c @@ -1,4 +1,4 @@ -/* $Id: widget_timer.c 749 2007-01-20 06:37:35Z michael $ +/* $Id: widget_timer.c 773 2007-02-25 12:39:09Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/widget_timer.c $ * * timer widget handling @@ -137,9 +137,9 @@ int widget_timer_register(void) WIDGET_CLASS Widget_Timer = { - name:"timer", - type:WIDGET_TYPE_TIMER, - init:widget_timer_init, - draw:NULL, - quit:widget_timer_quit, + .name = "timer", + .type = WIDGET_TYPE_TIMER, + .init = widget_timer_init, + .draw = NULL, + .quit = widget_timer_quit, }; |