summaryrefslogtreecommitdiff
path: root/docs/tutorial/gtk-tut.sgml
diff options
context:
space:
mode:
authorStefan Kost <stefkost@src.gnome.org>2007-12-10 22:18:46 +0000
committerStefan Kost <stefkost@src.gnome.org>2007-12-10 22:18:46 +0000
commit85133b2c442889a14fe86037a22d18f69e8e1e96 (patch)
treef0e9c5a878678b8648a4126c442563809a4110ed /docs/tutorial/gtk-tut.sgml
parent8082fbc437eac27a2263e603d7e6e2883e6569d8 (diff)
downloadgtk+-85133b2c442889a14fe86037a22d18f69e8e1e96.tar.gz
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
Diffstat (limited to 'docs/tutorial/gtk-tut.sgml')
-rwxr-xr-xdocs/tutorial/gtk-tut.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/gtk-tut.sgml b/docs/tutorial/gtk-tut.sgml
index aab6305983..9fc39c1695 100755
--- a/docs/tutorial/gtk-tut.sgml
+++ b/docs/tutorial/gtk-tut.sgml
@@ -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()�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�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, &amp;attributes, attributes_mask);
+ widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &amp;attributes, attributes_mask);
widget->style = gtk_style_attach (widget->style, widget->window);