summaryrefslogtreecommitdiff
path: root/gtk/gtkwidget.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-09 17:47:32 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-09 17:47:32 +0000
commit8d279c6d7726a4dbaa7f382f6727d19c9d1a547d (patch)
treeee8055138c53a15c0c7072523932c9ba2ec6586b /gtk/gtkwidget.h
parent4c9bcf28433f682c38be29ba17e21d11b7effd3e (diff)
downloadgdk-pixbuf-8d279c6d7726a4dbaa7f382f6727d19c9d1a547d.tar.gz
Typo fixes. (#169728, Morten Welinder, Owen Taylor)
2005-03-09 Matthias Clasen <mclasen@redhat.com> * gtk/tmpl/gtkwidget.sgml: Typo fixes. (#169728, Morten Welinder, Owen Taylor)
Diffstat (limited to 'gtk/gtkwidget.h')
-rw-r--r--gtk/gtkwidget.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkwidget.h b/gtk/gtkwidget.h
index 7ba87459e..2a0a73291 100644
--- a/gtk/gtkwidget.h
+++ b/gtk/gtkwidget.h
@@ -182,7 +182,7 @@ struct _GtkWidget
*/
guint8 state;
- /* The saved state of the widget. When a widgets state
+ /* The saved state of the widget. When a widget's state
* is changed to GTK_STATE_INSENSITIVE via
* "gtk_widget_set_state" or "gtk_widget_set_sensitive"
* the old state is kept around in this field. The state
@@ -190,9 +190,9 @@ struct _GtkWidget
*/
guint8 saved_state;
- /* The widgets name. If the widget does not have a name
+ /* The widget's name. If the widget does not have a name
* (the name is NULL), then its name (as returned by
- * "gtk_widget_get_name") is its classes name.
+ * "gtk_widget_get_name") is its class's name.
* Among other things, the widget name is used to determine
* the style to use for a widget.
*/
@@ -207,21 +207,21 @@ struct _GtkWidget
*/
GtkStyle *style;
- /* The widgets desired size.
+ /* The widget's desired size.
*/
GtkRequisition requisition;
- /* The widgets allocated size.
+ /* The widget's allocated size.
*/
GtkAllocation allocation;
- /* The widgets window or its parent window if it does
+ /* The widget's window or its parent window if it does
* not have a window. (Which will be indicated by the
* GTK_NO_WINDOW flag being set).
*/
GdkWindow *window;
- /* The widgets parent.
+ /* The widget's parent.
*/
GtkWidget *parent;
};