summaryrefslogtreecommitdiffstats
path: root/src/wayland.cpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-26 13:19:21 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commitdc465727c14a7d7588dad8554afc08f55e769b76 (patch)
tree1267319faf5e1d08ad78016eabe013f717bf7708 /src/wayland.cpp
parent1cdae57a5ac7f1fecb6d3c7f7cef019e331c43a2 (diff)
wayland: clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.cpp')
-rw-r--r--src/wayland.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/wayland.cpp b/src/wayland.cpp
index baf1aaa..2bae9e8 100644
--- a/src/wayland.cpp
+++ b/src/wayland.cpp
@@ -74,8 +74,8 @@ void registry::global(uint32_t name, char const *iface, uint32_t v) {
auto b = this->bindings.find(iface);
if (b != this->bindings.end())
b->second(this->proxy, name, v);
- logdebug("wl::registry @ %p global n %u i %s v %u", this->proxy, name,
- iface, v);
+ logdebug("wl::registry @ %p global n %u i %s v %u", this->proxy, name, iface,
+ v);
}
void registry::global_remove(uint32_t name) {}
@@ -318,14 +318,14 @@ constexpr struct ivi_controller_layer_listener layer_listener = {
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)
- , dst_rect{}
- , src_rect{}
- , size{}
- , orientation{}
- , visibility{}
- , opacity{} {
+ : wayland_proxy(ivi_controller_layer_create(c->proxy, i, w, h)),
+ controlled_entity(c, i),
+ dst_rect{},
+ src_rect{},
+ size{},
+ orientation{},
+ visibility{},
+ opacity{} {
ivi_controller_layer_add_listener(this->proxy, &layer_listener, this);
}