mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
prefs: Completely remove references to REVERSES
And fill up the gap in the flags as well
This commit is contained in:
parent
20a6243c85
commit
652fe57cdd
@ -29,7 +29,6 @@ guint meta_key_binding_get_mask (MetaKeyBinding *binding);
|
||||
gboolean meta_key_binding_is_builtin (MetaKeyBinding *binding);
|
||||
gboolean meta_key_binding_is_reversed (MetaKeyBinding *binding);
|
||||
|
||||
|
||||
gboolean meta_keybindings_set_custom_handler (const gchar *name,
|
||||
MetaKeyHandlerFunc handler,
|
||||
gpointer user_data,
|
||||
|
@ -369,7 +369,6 @@ typedef enum _MetaKeyBindingAction
|
||||
* @META_KEY_BINDING_NONE: none
|
||||
* @META_KEY_BINDING_PER_WINDOW: per-window
|
||||
* @META_KEY_BINDING_BUILTIN: built-in
|
||||
* @META_KEY_BINDING_REVERSES: reverses
|
||||
* @META_KEY_BINDING_IS_REVERSED: is reversed
|
||||
*/
|
||||
typedef enum
|
||||
@ -377,8 +376,7 @@ typedef enum
|
||||
META_KEY_BINDING_NONE,
|
||||
META_KEY_BINDING_PER_WINDOW = 1 << 0,
|
||||
META_KEY_BINDING_BUILTIN = 1 << 1,
|
||||
/* 1 << 2 used to be META_KEY_BINDING_REVERSES which is deprecated */
|
||||
META_KEY_BINDING_IS_REVERSED = 1 << 3
|
||||
META_KEY_BINDING_IS_REVERSED = 1 << 2,
|
||||
} MetaKeyBindingFlags;
|
||||
|
||||
/**
|
||||
@ -407,7 +405,3 @@ gboolean meta_prefs_bell_is_audible (void);
|
||||
GDesktopVisualBellType meta_prefs_get_visual_bell_type (void);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user