diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-06 08:29:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 08:29:55 +0900 |
commit | 586ae674ae65c64bf57653afae5378ca76ba40a7 (patch) | |
tree | d786da6ef28908a3811c9e33a2e979a0bfc1c738 /examples | |
parent | 8230a72aad0a9e33c6c34cf1735fbc288951993f (diff) | |
parent | e733b0e64309dbddffba33f19029664ebaf4ffb7 (diff) |
Merge pull request #136 from acrisci/bug/rename-output-layout-create
Rename wlr_output_layout_init()
Diffstat (limited to 'examples')
-rw-r--r-- | examples/output-layout.c | 2 | ||||
-rw-r--r-- | examples/pointer.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/output-layout.c b/examples/output-layout.c index c3e3e6d2..be542630 100644 --- a/examples/output-layout.c +++ b/examples/output-layout.c @@ -185,7 +185,7 @@ int main(int argc, char *argv[]) { state.x_vel = 500; state.y_vel = 500; - state.layout = wlr_output_layout_init(); + state.layout = wlr_output_layout_create(); clock_gettime(CLOCK_MONOTONIC, &state.ts_last); state.config = parse_args(argc, argv); diff --git a/examples/pointer.c b/examples/pointer.c index db71627e..2b937540 100644 --- a/examples/pointer.c +++ b/examples/pointer.c @@ -273,7 +273,7 @@ int main(int argc, char *argv[]) { state.config = parse_args(argc, argv); state.cursor = wlr_cursor_create(); - state.layout = wlr_output_layout_init(); + state.layout = wlr_output_layout_create(); wlr_cursor_attach_output_layout(state.cursor, state.layout); wlr_cursor_map_to_region(state.cursor, state.config->cursor.mapped_box); wl_list_init(&state.devices); |