aboutsummaryrefslogtreecommitdiffstats
path: root/src/wayland.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-26 21:54:01 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commitdf262c7d3049477a23cde85bdabdcdea7f7eebb0 (patch)
tree1ffa533876ff620f18db5bde904aa026d117e1aa /src/wayland.hpp
parent5aa433d98ea286bed658cc71998b581bf3fbc752 (diff)
clang-tidy the place up
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r--src/wayland.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp
index c1c21a0..f7f9ce5 100644
--- a/src/wayland.hpp
+++ b/src/wayland.hpp
@@ -85,11 +85,11 @@ struct display {
// \___/ \__,_|\__| .__/ \__,_|\__|
// |_|
struct output : wayland_proxy<struct wl_output> {
- int width;
- int height;
- int refresh;
+ int width{};
+ int height{};
+ int refresh{};
- output(struct wl_registry *registry, uint32_t name, uint32_t version);
+ output(struct wl_registry *r, uint32_t name, uint32_t v);
// Events
void geometry(int32_t x, int32_t y, int32_t pw, int32_t ph, int32_t subpel,
@@ -368,8 +368,8 @@ struct controller : public wayland_proxy<struct ivi_controller> {
void controller_screen(uint32_t id, struct ivi_controller_screen *screen);
void controller_layer(uint32_t id);
void controller_surface(uint32_t id);
- void controller_error(int32_t oid, int32_t otype, int32_t code,
- char const *text);
+ void controller_error(int32_t object_id, int32_t object_type,
+ int32_t error_code, char const *error_text);
// surface
void surface_visibility(uint32_t id, int32_t visibility);