summaryrefslogtreecommitdiff
path: root/gdk/gdkdevice.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-08-28 13:51:41 +0100
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-29 19:00:14 +0100
commitba158a24fe150b6535b376d3ba2696d4eb581466 (patch)
treed244d198c0a4ed81fcee87fa8d592abd2c1ac4b7 /gdk/gdkdevice.c
parent86851b7ad36077a1ba32c976605bea46a07e1924 (diff)
downloadgtk+-ba158a24fe150b6535b376d3ba2696d4eb581466.tar.gz
Miscellaneous property string fixes
Diffstat (limited to 'gdk/gdkdevice.c')
-rw-r--r--gdk/gdkdevice.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkdevice.c b/gdk/gdkdevice.c
index 8c035097fd..19fa1dca65 100644
--- a/gdk/gdkdevice.c
+++ b/gdk/gdkdevice.c
@@ -95,7 +95,7 @@ gdk_device_class_init (GdkDeviceClass *klass)
PROP_DISPLAY,
g_param_spec_object ("display",
P_("Device Display"),
- P_("Display to which the device belongs to"),
+ P_("Display which the device belongs to"),
GDK_TYPE_DISPLAY,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
@@ -110,7 +110,7 @@ gdk_device_class_init (GdkDeviceClass *klass)
PROP_DEVICE_MANAGER,
g_param_spec_object ("device-manager",
P_("Device manager"),
- P_("Device manager to which the device belongs to"),
+ P_("Device manager which the device belongs to"),
GDK_TYPE_DEVICE_MANAGER,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
@@ -148,7 +148,7 @@ gdk_device_class_init (GdkDeviceClass *klass)
/**
* GdkDevice:associated-device:
*
- * Associated pointer or keyboard to this device, if any. Devices of type #GDK_DEVICE_TYPE_MASTER
+ * Associated pointer or keyboard with this device, if any. Devices of type #GDK_DEVICE_TYPE_MASTER
* always come in keyboard/pointer pairs. Other device types will have a %NULL associated device.
*
* Since: 3.0
@@ -157,7 +157,7 @@ gdk_device_class_init (GdkDeviceClass *klass)
PROP_ASSOCIATED_DEVICE,
g_param_spec_object ("associated-device",
P_("Associated device"),
- P_("Associated pointer or keyboard to this device"),
+ P_("Associated pointer or keyboard with this device"),
GDK_TYPE_DEVICE,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
/**
@@ -202,7 +202,7 @@ gdk_device_class_init (GdkDeviceClass *klass)
g_object_class_install_property (object_class,
PROP_HAS_CURSOR,
g_param_spec_boolean ("has-cursor",
- P_("Whether the device has cursor"),
+ P_("Whether the device has a cursor"),
P_("Whether there is a visible cursor following device motion"),
FALSE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |