summaryrefslogtreecommitdiffstats
path: root/src/wayland.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-01 11:47:46 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commitca53e70e58714286798a071fbe2316295334ac7b (patch)
treee31d7904f838782b1739989283e8f81a8ecc9131 /src/wayland.hpp
parent92c8b647e4e164479c10a84021564533e73cbd69 (diff)
wayland: make genivi::rect::width and height int32
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r--src/wayland.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp
index 4ab4709..b5e2d51 100644
--- a/src/wayland.hpp
+++ b/src/wayland.hpp
@@ -125,7 +125,7 @@ struct size {
};
struct rect {
- uint32_t w, h;
+ int32_t w, h;
int32_t x, y;
};