diff options
author | Sven Neumann <sven@gimp.org> | 2008-08-11 09:15:37 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2008-08-11 09:15:37 +0000 |
commit | f6176316caa23e651f4d1e35701f7f7f841ca0ff (patch) | |
tree | 52b1a3ea66b1de47a1bc8873d330aecf826ba48c /gdk/gdkkeys.c | |
parent | d7f19665b4c82fc27319c3e27953e02baad7ff58 (diff) | |
download | gtk+-f6176316caa23e651f4d1e35701f7f7f841ca0ff.tar.gz |
gdk/gdkkeys.c gdk/gdkscreen.c use canonical signal names.
2008-08-11 Sven Neumann <sven@gimp.org>
* gdk/gdkkeys.c
* gdk/gdkscreen.c
* gdk/gdkdisplaymanager.c: use canonical signal names.
svn path=/trunk/; revision=21059
Diffstat (limited to 'gdk/gdkkeys.c')
-rw-r--r-- | gdk/gdkkeys.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk/gdkkeys.c b/gdk/gdkkeys.c index 30a6a314bc..b01d6398c3 100644 --- a/gdk/gdkkeys.c +++ b/gdk/gdkkeys.c @@ -49,13 +49,13 @@ gdk_keymap_class_init (GdkKeymapClass *klass) * GdkKeymap::direction-changed: * @keymap: the object on which the signal is emitted * - * The ::direction_changed signal gets emitted when the direction of + * The ::direction-changed signal gets emitted when the direction of * the keymap changes. * * Since: 2.0 */ signals[DIRECTION_CHANGED] = - g_signal_new ("direction_changed", + g_signal_new ("direction-changed", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GdkKeymapClass, direction_changed), @@ -67,13 +67,13 @@ gdk_keymap_class_init (GdkKeymapClass *klass) * GdkKeymap::keys-changed: * @keymap: the object on which the signal is emitted * - * The ::keys_changed signal is emitted when the mapping represented by + * The ::keys-changed signal is emitted when the mapping represented by * @keymap changes. * * Since: 2.2 */ signals[KEYS_CHANGED] = - g_signal_new ("keys_changed", + g_signal_new ("keys-changed", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GdkKeymapClass, keys_changed), |