[PATCH weston 2/3] simple-im: Use the appropriate enum names to xkb calls

Bryce Harrington bryce at osg.samsung.com
Tue Oct 11 23:33:15 UTC 2016


XKB_KEYMAP_COMPILE_NO_FLAGS and XKB_CONTEXT_NO_FLAGS are both defined as
0 so no functional change here, just improved code clarity.

Signed-off-by: Bryce Harrington <bryce at osg.samsung.com>
---
 clients/weston-simple-im.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clients/weston-simple-im.c b/clients/weston-simple-im.c
index f766a88..280589b 100644
--- a/clients/weston-simple-im.c
+++ b/clients/weston-simple-im.c
@@ -192,7 +192,7 @@ input_method_keyboard_keymap(void *data,
 		xkb_keymap_new_from_string(keyboard->xkb_context,
 					   map_str,
 					   XKB_KEYMAP_FORMAT_TEXT_V1,
-					   0);
+					   XKB_KEYMAP_COMPILE_NO_FLAGS);
 
 	munmap(map_str, size);
 	close(fd);
@@ -503,7 +503,7 @@ main(int argc, char *argv[])
 		return -1;
 	}
 
-	simple_im.xkb_context = xkb_context_new(0);
+	simple_im.xkb_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
 	if (simple_im.xkb_context == NULL) {
 		fprintf(stderr, "Failed to create XKB context\n");
 		return -1;
-- 
1.9.1



More information about the wayland-devel mailing list