File tree Expand file tree Collapse file tree 15 files changed +13
-32
lines changed Expand file tree Collapse file tree 15 files changed +13
-32
lines changed Original file line number Diff line number Diff line change 21
21
static const component_functions_t _component_functions = {
22
22
.cleanup = ui_util_component_cleanup ,
23
23
.render = ui_util_component_render_subcomponents ,
24
- .on_event = ui_util_on_event_noop ,
24
+ .on_event = NULL ,
25
25
};
26
26
27
27
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ static void _render(component_t* component)
48
48
static const component_functions_t _component_functions = {
49
49
.cleanup = ui_util_component_cleanup ,
50
50
.render = _render ,
51
- .on_event = ui_util_on_event_noop ,
51
+ .on_event = NULL ,
52
52
};
53
53
54
54
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change 30
30
static const component_functions_t _component_functions = {
31
31
.cleanup = ui_util_component_cleanup ,
32
32
.render = ui_util_component_render_subcomponents ,
33
- .on_event = ui_util_on_event_noop ,
33
+ .on_event = NULL ,
34
34
};
35
35
36
36
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ static void _render(component_t* component)
50
50
static component_functions_t _component_functions = {
51
51
.cleanup = ui_util_component_cleanup ,
52
52
.render = _render ,
53
- .on_event = ui_util_on_event_noop ,
53
+ .on_event = NULL ,
54
54
};
55
55
56
56
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change 31
31
static const component_functions_t _component_functions = {
32
32
.cleanup = ui_util_component_cleanup ,
33
33
.render = ui_util_component_render_subcomponents ,
34
- .on_event = ui_util_on_event_noop ,
34
+ .on_event = NULL ,
35
35
};
36
36
37
37
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ static void _render(component_t* component)
142
142
static component_functions_t _component_functions = {
143
143
.cleanup = ui_util_component_cleanup ,
144
144
.render = _render ,
145
- .on_event = ui_util_on_event_noop ,
145
+ .on_event = NULL ,
146
146
};
147
147
148
148
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ static void _render(component_t* component)
38
38
static const component_functions_t _component_functions = {
39
39
.cleanup = ui_util_component_cleanup ,
40
40
.render = _render ,
41
- .on_event = ui_util_on_event_noop ,
41
+ .on_event = NULL ,
42
42
};
43
43
44
44
component_t * progress_create (const char * title )
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ static void _render(component_t* component)
71
71
static component_functions_t _component_functions = {
72
72
.cleanup = ui_util_component_cleanup ,
73
73
.render = _render ,
74
- .on_event = ui_util_on_event_noop ,
74
+ .on_event = NULL ,
75
75
};
76
76
77
77
component_t * screensaver_create (void )
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ static void _render(component_t* component)
59
59
static const component_functions_t _component_functions = {
60
60
.cleanup = ui_util_component_cleanup ,
61
61
.render = _render ,
62
- .on_event = ui_util_on_event_noop ,
62
+ .on_event = NULL ,
63
63
};
64
64
65
65
/********************************** Create Instance **********************************/
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ static void _render(component_t* component)
55
55
static const component_functions_t _component_functions = {
56
56
.cleanup = ui_util_component_cleanup ,
57
57
.render = _render ,
58
- .on_event = ui_util_on_event_noop ,
58
+ .on_event = NULL ,
59
59
};
60
60
61
61
/********************************** Create Instance **********************************/
You can’t perform that action at this time.
0 commit comments