prefs: Fix introspection issues

This commit is contained in:
Jasper St. Pierre 2013-10-09 16:25:24 -04:00
parent c24d9bf142
commit 0ead0d945a

View File

@ -419,13 +419,13 @@ typedef struct
*/ */
GSList *bindings; GSList *bindings;
/** for keybindings that can have shift or not like Alt+Tab */ /* for keybindings that can have shift or not like Alt+Tab */
gboolean add_shift:1; gboolean add_shift:1;
/** for keybindings that apply only to a window */ /* for keybindings that apply only to a window */
gboolean per_window:1; gboolean per_window:1;
/** for keybindings not added with meta_display_add_keybinding() */ /* for keybindings not added with meta_display_add_keybinding() */
gboolean builtin:1; gboolean builtin:1;
} MetaKeyPref; } MetaKeyPref;