From 88f85f74773b7b5f4a35a5f9f53c336078d773af Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 31 Oct 2017 12:01:49 +0100 Subject: Fix code style issues --- types/wlr_output_layout.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/types/wlr_output_layout.c b/types/wlr_output_layout.c index d3f41766..817a03f6 100644 --- a/types/wlr_output_layout.c +++ b/types/wlr_output_layout.c @@ -8,14 +8,14 @@ #include struct wlr_output_layout_state { - struct wlr_box box; + struct wlr_box _box; // should never be read directly, use the getter }; struct wlr_output_layout_output_state { struct wlr_output_layout *layout; struct wlr_output_layout_output *l_output; - struct wlr_box box; + struct wlr_box _box; // should never be read directly, use the getter bool auto_configured; struct wl_listener resolution; @@ -57,9 +57,9 @@ void wlr_output_layout_destroy(struct wlr_output_layout *layout) { wl_signal_emit(&layout->events.destroy, layout); - struct wlr_output_layout_output *output, *temp = NULL; - wl_list_for_each_safe(output, temp, &layout->outputs, link) { - wlr_output_layout_output_destroy(output); + struct wlr_output_layout_output *l_output, *temp = NULL; + wl_list_for_each_safe(l_output, temp, &layout->outputs, link) { + wlr_output_layout_output_destroy(l_output); } free(layout->state); @@ -68,13 +68,13 @@ void wlr_output_layout_destroy(struct wlr_output_layout *layout) { static struct wlr_box *wlr_output_layout_output_get_box( struct wlr_output_layout_output *l_output) { - l_output->state->box.x = l_output->x; - l_output->state->box.y = l_output->y; + l_output->state->_box.x = l_output->x; + l_output->state->_box.y = l_output->y; int width, height; wlr_output_effective_resolution(l_output->output, &width, &height); - l_output->state->box.width = width; - l_output->state->box.height = height; - return &l_output->state->box; + l_output->state->_box.width = width; + l_output->state->_box.height = height; + return &l_output->state->_box; } /** @@ -338,12 +338,12 @@ struct wlr_box *wlr_output_layout_get_box( } } - layout->state->box.x = min_x; - layout->state->box.y = min_y; - layout->state->box.width = max_x - min_x; - layout->state->box.height = max_y - min_y; + layout->state->_box.x = min_x; + layout->state->_box.y = min_y; + layout->state->_box.width = max_x - min_x; + layout->state->_box.height = max_y - min_y; - return &layout->state->box; + return &layout->state->_box; } // not reached -- cgit v1.2.3