summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Hlusiak <saschahlusiak@arcor.de>2008-09-30 00:35:01 +0200
committerSascha Hlusiak <saschahlusiak@arcor.de>2008-09-30 00:35:01 +0200
commit03175f968c4177de2208a2d8e73f9c8106630a6b (patch)
treec5e1a5998597c786722194814394ccadd572bacb
parent34ca7d26830b5c58a35b9aec7f7cdd6d4446c456 (diff)
Name all properties uppercase
Just looks better
-rw-r--r--src/jstk_properties.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jstk_properties.c b/src/jstk_properties.c
index 720f2d5..c81c4ac 100644
--- a/src/jstk_properties.c
+++ b/src/jstk_properties.c
@@ -73,15 +73,15 @@ static Atom prop_axis_type = 0;
static Atom prop_axis_mapping = 0;
/* float, movement amplify value per axis */
-#define JSTK_PROP_AXIS_AMPLIFY "Axis amplify"
+#define JSTK_PROP_AXIS_AMPLIFY "Axis Amplify"
static Atom prop_axis_amplify = 0;
/* 16 bit, set keysyms for low axis. Format: (axis keysym1 keysym2 keysym3 keysym4) */
-#define JSTK_PROP_AXIS_KEYS_LOW "Axis keys (low) (set only)"
+#define JSTK_PROP_AXIS_KEYS_LOW "Axis Keys (low)"
static Atom prop_axis_keys_low = 0;
/* 16 bit, set keysyms for high axis. Format: (axis keysym1 keysym2 keysym3 keysym4) */
-#define JSTK_PROP_AXIS_KEYS_HIGH "Axis keys (high) (set only)"
+#define JSTK_PROP_AXIS_KEYS_HIGH "Axis keys (high)"
static Atom prop_axis_keys_high = 0;
/* 8 bit, one of enum _JOYSTICKMAPPING @ jstk.h per button */
@@ -89,15 +89,15 @@ static Atom prop_axis_keys_high = 0;
static Atom prop_button_mapping = 0;
/* 8 bit, logical button number per button */
-#define JSTK_PROP_BUTTON_BUTTONNUMBER "Button number"
+#define JSTK_PROP_BUTTON_BUTTONNUMBER "Button Number"
static Atom prop_button_buttonnumber = 0;
/* float, button amplify value per button */
-#define JSTK_PROP_BUTTON_AMPLIFY "Button amplify"
+#define JSTK_PROP_BUTTON_AMPLIFY "Button Amplify"
static Atom prop_button_amplify = 0;
/* 16 bit, set keysyms for button. Format: (button keysym1 keysym2 keysym3 keysym4) */
-#define JSTK_PROP_BUTTON_KEYS "Button keys (set only)"
+#define JSTK_PROP_BUTTON_KEYS "Button Keys"
static Atom prop_button_keys = 0;