diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-06-23 14:25:50 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-08 17:24:00 +0200 |
commit | 1433d7cd8a5b2a1f6bd64c370d1cfe98d7a27d5e (patch) | |
tree | e59c58fad0a9a86992f94e5d7b8215a1b3c16e0c /src | |
parent | 8fa57a084f696f454f8940d34243e8e9ac6dba34 (diff) |
wayland: minimal code style change
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/wayland.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp index c8a7113..44f6cb4 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -273,7 +273,9 @@ struct screen : public wayland_proxy<struct ivi_controller_screen>, screen(uint32_t i, struct controller *c, struct ivi_controller_screen *p); void clear() { ivi_controller_screen_clear(this->proxy); } - void add_layer(layer *l) { ivi_controller_screen_add_layer(this->proxy, l->proxy); } + void add_layer(layer *l) { + ivi_controller_screen_add_layer(this->proxy, l->proxy); + } }; // _ _ _ |