summaryrefslogtreecommitdiffstats
path: root/src/wayland.cpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-26 16:34:55 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit7ffa858f1f3bdd4823ed2834186ceea010d6dd33 (patch)
tree6857ada07dd8ceaa883d589934665310133bcf3f /src/wayland.cpp
parentccad564c1621ba8aa69ce47ea9374da373b0bcce (diff)
wayland: rename controlled_entity to controller_child
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.cpp')
-rw-r--r--src/wayland.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wayland.cpp b/src/wayland.cpp
index 1078a14..7be89c5 100644
--- a/src/wayland.cpp
+++ b/src/wayland.cpp
@@ -324,7 +324,7 @@ layer::layer(uint32_t i, struct controller *c) : layer(i, 0, 0, c) {}
layer::layer(uint32_t i, int32_t w, int32_t h, struct controller *c)
: wayland_proxy(ivi_controller_layer_create(c->proxy, i, w, h)),
- controlled_entity(c, i),
+ controller_child(c, i),
dst_rect{},
src_rect{},
size{},
@@ -489,7 +489,7 @@ constexpr struct ivi_controller_surface_listener surface_listener = {
surface::surface(uint32_t i, struct controller *c)
: wayland_proxy(ivi_controller_surface_create(c->proxy, i)),
- controlled_entity(c, i),
+ controller_child(c, i),
dst_rect{},
src_rect{},
size{},
@@ -581,7 +581,7 @@ void controller::surface_content(uint32_t id, int32_t content_state) {
//
screen::screen(uint32_t i, struct controller *c,
struct ivi_controller_screen *p)
- : wayland_proxy(p), controlled_entity(c, i) {
+ : wayland_proxy(p), controller_child(c, i) {
logdebug("genivi::screen @ %p id %u", p, i);
}
}