summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2012-03-27 14:41:44 +0200
committerDaniel Stone <daniel@fooishbar.org>2012-03-27 13:45:17 +0100
commit087327d9c505ff8b9b00d998754528a347152851 (patch)
treeb1fddc449a45ed0f79e6884dce84245cf5706661 /include
parent389c2db1d778f4a7bbe94abfad1e6de4dbd45858 (diff)
downloadxorg-lib-libxkbcommon-087327d9c505ff8b9b00d998754528a347152851.tar.gz
Move doxygen comment before enum item
Signed-off-by: Guillem Jover <guillem@hadrons.org>
Diffstat (limited to 'include')
-rw-r--r--include/xkbcommon/xkbcommon.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/xkbcommon/xkbcommon.h b/include/xkbcommon/xkbcommon.h
index 48a0e48..cdf0d7c 100644
--- a/include/xkbcommon/xkbcommon.h
+++ b/include/xkbcommon/xkbcommon.h
@@ -354,18 +354,18 @@ xkb_state_update_key(struct xkb_state *state, xkb_keycode_t key,
* locked modifiers.
*/
enum xkb_state_component {
+ /** A key holding this modifier or group is currently physically
+ * depressed; also known as 'base'. */
XKB_STATE_DEPRESSED = (1 << 0),
- /**< A key holding this modifier or group is currently physically
- * depressed; also known as 'base'. */
+ /** Modifier or group is latched, i.e. will be unset after the next
+ * non-modifier key press. */
XKB_STATE_LATCHED = (1 << 1),
- /**< Modifier or group is latched, i.e. will be unset after the next
- * non-modifier key press. */
+ /** Modifier or group is locked, i.e. will be unset after the key
+ * provoking the lock has been pressed again. */
XKB_STATE_LOCKED = (1 << 2),
- /**< Modifier or group is locked, i.e. will be unset after the key
- * provoking the lock has been pressed again. */
+ /** Combinatination of depressed, latched, and locked. */
XKB_STATE_EFFECTIVE =
(XKB_STATE_DEPRESSED | XKB_STATE_LATCHED | XKB_STATE_LOCKED),
- /**< Combinatination of depressed, latched, and locked. */
};
/**