Clarify docs. (#353423, Christian Persch)

2006-12-29  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkstyle.c (gtk_style_attach): Clarify docs.  (#353423,
        Christian Persch)
This commit is contained in:
Matthias Clasen
2006-12-29 19:57:03 +00:00
committed by Matthias Clasen
parent 4193650dc9
commit 8064faafb3
2 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,8 @@
2006-12-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkstyle.c (gtk_style_attach): Clarify docs. (#353423,
Christian Persch)
* gtk/gtkentry.c (blink_cb):
* gtk/gtktextview.c (blink_cb): Don't die in an assertion
if focus went missing. Just warn, clean up and continue.

View File

@@ -678,10 +678,6 @@ gtk_style_new (void)
* gtk_style_attach:
* @style: a #GtkStyle.
* @window: a #GdkWindow.
* @returns: Either @style, or a newly-created #GtkStyle.
* If the style is newly created, the style parameter
* will be dereferenced, and the new style will have
* a reference count belonging to the caller.
*
* Attaches a style to a window; this process allocates the
* colors and creates the GC's for the style - it specializes
@@ -692,7 +688,12 @@ gtk_style_new (void)
* Since this function may return a new object, you have to use it
* in the following way:
* <literal>style = gtk_style_attach (style, window)</literal>
**/
*
* Returns: Either @style, or a newly-created #GtkStyle.
* If the style is newly created, the style parameter
* will be unref'ed, and the new style will have
* a reference count belonging to the caller.
*/
GtkStyle*
gtk_style_attach (GtkStyle *style,
GdkWindow *window)