diff options
author | Daniel Stone <daniel@fooishbar.org> | 2007-08-07 16:37:42 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2007-08-08 01:34:59 +0300 |
commit | aef255425a3521d66c3405d34f7787628a22703e (patch) | |
tree | 4b7eb935b984da1b74786661d44a263d47ec045f /config/hal.c | |
parent | 838e59c02ec06446fc180fb9d86fa8793c7b9903 (diff) |
Config: HAL: Use input.xkb namespace
Use an explicit input.xkb.foo namespace, not input.xkb_foo.
Diffstat (limited to 'config/hal.c')
-rw-r--r-- | config/hal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/hal.c b/config/hal.c index f29ba9213..833ec59a0 100644 --- a/config/hal.c +++ b/config/hal.c @@ -198,12 +198,12 @@ device_added(LibHalContext *hal_ctx, const char *udi) name = xstrdup("(unnamed)"); if (type & TYPE_KEYS) { - xkb_rules = get_prop_string(hal_ctx, udi, "input.xkb_rules", &error); - xkb_model = get_prop_string(hal_ctx, udi, "input.xkb_model", &error); - xkb_layout = get_prop_string(hal_ctx, udi, "input.xkb_layout", &error); - xkb_variant = get_prop_string(hal_ctx, udi, "input.xkb_variant", + xkb_rules = get_prop_string(hal_ctx, udi, "input.xkb.rules", &error); + xkb_model = get_prop_string(hal_ctx, udi, "input.xkb.model", &error); + xkb_layout = get_prop_string(hal_ctx, udi, "input.xkb.layout", &error); + xkb_variant = get_prop_string(hal_ctx, udi, "input.xkb.variant", &error); - xkb_options = get_prop_string_array(hal_ctx, udi, "input.xkb_options", + xkb_options = get_prop_string_array(hal_ctx, udi, "input.xkb.options", &error); } |