mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Use gtk_widget_get_parent_window() instead of widget->parent->window.
* docs/tutorial/gtk-tut.sgml: Use gtk_widget_get_parent_window() instead of widget->parent->window. svn path=/trunk/; revision=19152
This commit is contained in:
parent
8082fbc437
commit
85133b2c44
@ -1,3 +1,8 @@
|
||||
2007-12-11 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/tutorial/gtk-tut.sgml:
|
||||
Use gtk_widget_get_parent_window() instead of widget->parent->window.
|
||||
|
||||
2007-12-10 Richard Hult <richard@imendio.com>
|
||||
|
||||
* gdk/quartz/Makefile.am:
|
||||
|
@ -2851,7 +2851,7 @@ values set to <literal>0.0</literal> (which isn't very useful in this case).
|
||||
In order to avoid confusing yourself, you probably want to create your
|
||||
adjustment with a <literal>page_size</literal> of <literal>0.0</literal> so
|
||||
that its <literal>upper</literal> value actually corresponds to the highest
|
||||
value the user can select. The _new_with_range() variants take care of creating
|
||||
value the user can select. The _new_with_range()<EFBFBD>variants take care of creating
|
||||
a suitable adjustment. (If you're <emphasis>already</emphasis> thoroughly
|
||||
confused, read the section on <link linkend="ch-Adjustments">Adjustments</link>
|
||||
again for an explanation of what exactly adjustments do and how to create and
|
||||
@ -5519,7 +5519,7 @@ example code.</para>
|
||||
<programlisting role="C">
|
||||
<!-- example-start calendar calendar.c -->
|
||||
/*
|
||||
* Copyright (C) 1998 Cesar Miquel, Shawn T. Amundson, Mattias Grönlund
|
||||
* Copyright (C) 1998 Cesar Miquel, Shawn T. Amundson, Mattias Gr<EFBFBD>nlund
|
||||
* Copyright (C) 2000 Tony Gale
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
@ -11943,7 +11943,7 @@ gtk_dial_realize (GtkWidget *widget)
|
||||
attributes.colormap = gtk_widget_get_colormap (widget);
|
||||
|
||||
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
|
||||
widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask);
|
||||
widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask);
|
||||
|
||||
widget->style = gtk_style_attach (widget->style, widget->window);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user