diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2014-04-10 13:43:53 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2014-05-23 19:54:27 +0200 |
commit | 24dc172b462434cecf424ba716c0ef157592a368 (patch) | |
tree | f24a4fdd3b77ce941f026fccd2acd3d22066d2ce /gtk/gtkgesturemultipress.c | |
parent | fa168e202e4ff3b30588ac20ebdec35e8b3e7821 (diff) | |
download | gtk+-24dc172b462434cecf424ba716c0ef157592a368.tar.gz |
multipress: doc fixes
Diffstat (limited to 'gtk/gtkgesturemultipress.c')
-rw-r--r-- | gtk/gtkgesturemultipress.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkgesturemultipress.c b/gtk/gtkgesturemultipress.c index c5549e2621..cd2064abb5 100644 --- a/gtk/gtkgesturemultipress.c +++ b/gtk/gtkgesturemultipress.c @@ -24,8 +24,8 @@ * * #GtkGestureMultiPress is a #GtkGesture implementation able to recognize * multiple clicks on a nearby zone, which can be listened for through the - * #GtkGestureMultiPress:pressed signal. Whenever time or distance between clicks - * exceed the GTK+ defaults, #GtkGestureMultiPress:stopped is emitted, and the + * #GtkGestureMultiPress::pressed signal. Whenever time or distance between clicks + * exceed the GTK+ defaults, #GtkGestureMultiPress::stopped is emitted, and the * click counter is reset. * * Callers may also restrict the area that is considered valid for a >1 @@ -276,7 +276,7 @@ gtk_gesture_multi_press_class_init (GtkGestureMultiPressClass *klass) controller_class->reset = gtk_gesture_multi_press_reset; /** - * GtkGestureMultiPress:pressed: + * GtkGestureMultiPress::pressed: * @gesture: the object which received the signal * @n_press: how many touch/button presses happened with this one * @x: The X coordinate, in widget allocation coordinates @@ -295,7 +295,7 @@ gtk_gesture_multi_press_class_init (GtkGestureMultiPressClass *klass) G_TYPE_NONE, 3, G_TYPE_INT, G_TYPE_DOUBLE, G_TYPE_DOUBLE); /** - * GtkGestureMultiPress:stopped: + * GtkGestureMultiPress::stopped: * @gesture: the object which received the signal * * This signal is emitted whenever any time/distance threshold has |