simple-im: Use the appropriate enum names to xkb calls
authorBryce Harrington <bryce@osg.samsung.com>
Tue, 11 Oct 2016 23:17:39 +0000 (16:17 -0700)
committerBryce Harrington <bryce@osg.samsung.com>
Wed, 12 Oct 2016 21:03:08 +0000 (14:03 -0700)
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@osg.samsung.com>
Reviewed-by: Jan Arne Petersen <janarne@gmail.com>
clients/weston-simple-im.c

index f766a88..280589b 100644 (file)
@@ -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;