Small doc fixes

svn path=/trunk/; revision=18451
This commit is contained in:
Matthias Clasen 2007-07-12 00:57:23 +00:00
parent 167acf1286
commit 6608fbfd36
4 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-07-11 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkrange.c:
* gtk/gtkbindings.c:
* gtk/gtkscalebutton.c: Small doc fixes.
2007-07-11 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkplug.c:

View File

@ -565,7 +565,7 @@ gtk_binding_entry_activate (GtkBindingEntry *entry,
* gtk_binding_set_new:
* @set_name: unique name of this binding set
*
* Gtk+ maintains a global list of binding sets. Each binding set has
* GTK+ maintains a global list of binding sets. Each binding set has
* a unique name which needs to be specified upon creation.
*
* Return value: new binding set

View File

@ -251,6 +251,12 @@ gtk_range_class_init (GtkRangeClass *class)
class->slider_detail = "slider";
class->stepper_detail = "stepper";
/**
* GtkRange::value-changed:
* @range: the #GtkRange
*
* Emitted when the range value changes.
*/
signals[VALUE_CHANGED] =
g_signal_new (I_("value_changed"),
G_TYPE_FROM_CLASS (gobject_class),
@ -270,6 +276,13 @@ gtk_range_class_init (GtkRangeClass *class)
G_TYPE_NONE, 1,
G_TYPE_DOUBLE);
/**
* GtkRange::move-slider:
* @range: the #GtkRange
* @step: how to move the slider
*
* Virtual function that moves the slider. Used for keybindings.
*/
signals[MOVE_SLIDER] =
g_signal_new (I_("move_slider"),
G_TYPE_FROM_CLASS (gobject_class),

View File

@ -233,6 +233,7 @@ gtk_scale_button_class_init (GtkScaleButtonClass *klass)
/**
* GtkScaleButton::value-changed:
* @button: the object that received the signal
* @value: The new value
*
* Emitted when the value field has changed.
*