aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-10 15:42:13 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit239ece2c159c1cef83e01cd9c7d61461de718e84 (patch)
tree72a669c6bc170b6df5b7542b7282265e9a7f56c2 /src
parent0c673801b78c98fe116b4d14bf37fb18f8b749dc (diff)
wayland: sprops and lprops should be before the *_map_types
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src')
-rw-r--r--src/wayland.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp
index 740a703..ea23ebb 100644
--- a/src/wayland.hpp
+++ b/src/wayland.hpp
@@ -245,13 +245,13 @@ struct controller : public wayland_proxy<struct ivi_controller> {
proxy_to_id_map_type layer_proxy_to_id;
proxy_to_id_map_type screen_proxy_to_id;
+ props_map sprops;
+ props_map lprops;
+
surface_map_type surfaces;
layer_map_type layers;
screen_map_type screens;
- props_map sprops;
- props_map lprops;
-
typedef std::pair<char const *, std::function<void(struct controller *)>>
name_task_pair;
std::vector<name_task_pair> pending;