aboutsummaryrefslogtreecommitdiffstats
path: root/widget_text.c
diff options
context:
space:
mode:
Diffstat (limited to 'widget_text.c')
-rw-r--r--widget_text.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/widget_text.c b/widget_text.c
index a0b08ad..288fbe5 100644
--- a/widget_text.c
+++ b/widget_text.c
@@ -338,9 +338,9 @@ int widget_text_quit(WIDGET * Self)
WIDGET_CLASS Widget_Text = {
- name:"text",
- type:WIDGET_TYPE_RC,
- init:widget_text_init,
- draw:NULL,
- quit:widget_text_quit,
+ .name = "text",
+ .type = WIDGET_TYPE_RC,
+ .init = widget_text_init,
+ .draw = NULL,
+ .quit = widget_text_quit,
};