Unconstify xkb_rules_names

Since we never return an xkb_rules_names and it's all user-provided
strings, seems a bit harsh to have it const.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
master
Daniel Stone 2012-04-03 17:08:57 +01:00
parent ef88c7efab
commit d007cd0a1f
1 changed files with 5 additions and 5 deletions

View File

@ -114,11 +114,11 @@ typedef uint32_t xkb_led_index_t;
* should be the primary identifier for a keymap.
*/
struct xkb_rule_names {
const char *rules;
const char *model;
const char *layout;
const char *variant;
const char *options;
char *rules;
char *model;
char *layout;
char *variant;
char *options;
};
/**