Document gtk_xscrollbar.new

svn path=/trunk/; revision=21993
This commit is contained in:
Matthias Clasen 2008-12-29 07:17:01 +00:00
parent 3cf7c45388
commit 175b4bea8b
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-12-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtk[hv]scrollbar.c: Document gtk_[hv]scrollbar_new.
2008-12-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwidget.c: Document gtk_mnemonic_activate.

View File

@ -47,6 +47,14 @@ gtk_vscrollbar_init (GtkVScrollbar *vscrollbar)
GTK_ORIENTATION_VERTICAL);
}
/**
* gtk_vscrollbar_new:
* @adjustment: the #GtkAdjustment to use, or %NULL to create a new adjustment
*
* Creates a new vertical scrollbar.
*
* Returns: the new #GtkVScrollbar
*/
GtkWidget *
gtk_vscrollbar_new (GtkAdjustment *adjustment)
{