diff options
author | Laszlo Agocs <laszlo.p.agocs@nokia.com> | 2012-05-11 20:16:39 +0300 |
---|---|---|
committer | Laszlo Agocs <laszlo.p.agocs@nokia.com> | 2012-05-15 07:12:41 +0200 |
commit | 8c56409598a2a0aa5023ab276c4fa4402bb23880 (patch) | |
tree | 1f8b1ef569f8f1ee7b512f4b78de0f0ab9c43e32 /config.tests | |
parent | 25af63583b5e9b040d71d672e0550514a52678b5 (diff) | |
download | qtwayland-8c56409598a2a0aa5023ab276c4fa4402bb23880.tar.gz |
Yet another xkbcommon API change
Change-Id: I7ca4bf170cd6adb5b371c3c040ed35387876d0e8
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r-- | config.tests/xkbcommon/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.tests/xkbcommon/main.cpp b/config.tests/xkbcommon/main.cpp index 9eb8506d..1cb4cfd0 100644 --- a/config.tests/xkbcommon/main.cpp +++ b/config.tests/xkbcommon/main.cpp @@ -53,9 +53,9 @@ int main() names.variant = strdup(""); names.options = strdup(""); - xkb_context *context = xkb_context_new(); + xkb_context *context = xkb_context_new(xkb_context_flags(0)); if (context) { - xkb_keymap * keymap = xkb_map_new_from_names(context, &names); + xkb_keymap * keymap = xkb_map_new_from_names(context, &names, xkb_map_compile_flags(0)); if (keymap) { xkb_state *state = xkb_state_new(keymap); if (state) |