diff options
author | Soeren Sandmann <sandmann@daimi.au.dk> | 2002-10-05 15:09:29 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2002-10-05 15:09:29 +0000 |
commit | a92b7a99f47389d8bc7e60fdc59540f39eb21f11 (patch) | |
tree | 2a92a6da447dd3482020a76cf79682c4dc937e78 /gtk | |
parent | 8409ada92ff408f41c3014ffa6401ce97da0e5ed (diff) | |
download | gtk+-a92b7a99f47389d8bc7e60fdc59540f39eb21f11.tar.gz |
docs/reference/gtk/tmpl/gtkfontseldlg.sgml, gdk/gdkwindow.c,
Sat Oct 5 16:47:03 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* docs/reference/gtk/tmpl/gtkfontseldlg.sgml, gdk/gdkwindow.c,
gdk/x11/gdkwindow-x11.c, gtk/gtkfontsel.h, gtk/gtkimcontext.c,
gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c
Documentation fixes:
#75170, Dan Winship;
#73220, Havoc Pennington;
#70742, Boris Shingarov;
#72007, Alexey A. Malyshev
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkfontsel.h | 10 | ||||
-rw-r--r-- | gtk/gtkimcontext.c | 2 | ||||
-rw-r--r-- | gtk/gtktreeview.c | 7 | ||||
-rw-r--r-- | gtk/gtktreeviewcolumn.c | 5 |
4 files changed, 14 insertions, 10 deletions
diff --git a/gtk/gtkfontsel.h b/gtk/gtkfontsel.h index 7191f75716..64701ffff2 100644 --- a/gtk/gtkfontsel.h +++ b/gtk/gtkfontsel.h @@ -102,16 +102,18 @@ struct _GtkFontSelectionClass struct _GtkFontSelectionDialog { GtkDialog parent_instance; - + + /*< private >*/ GtkWidget *fontsel; - + GtkWidget *main_vbox; GtkWidget *action_area; + /*< public >*/ GtkWidget *ok_button; - /* The 'Apply' button is not shown by default but you can show/hide it. */ GtkWidget *apply_button; GtkWidget *cancel_button; - + + /*< private >*/ /* If the user changes the width of the dialog, we turn auto-shrink off. */ gint dialog_width; gboolean auto_resize; diff --git a/gtk/gtkimcontext.c b/gtk/gtkimcontext.c index 51287e040e..3c6ba7971e 100644 --- a/gtk/gtkimcontext.c +++ b/gtk/gtkimcontext.c @@ -525,7 +525,7 @@ gtk_im_context_get_surrounding (GtkIMContext *context, * * Asks the widget that the input context is attached to to delete * characters around the cursor position by emitting the - * GtkIMContext::delete_context signal. Note that @offset and @n_chars + * GtkIMContext::delete_surrounding signal. Note that @offset and @n_chars * are in characters not in bytes, which differs from the usage other * places in #GtkIMContext. * diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index eb6d1720a0..b67a3380d6 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -10397,10 +10397,11 @@ gtk_tree_view_get_search_column (GtkTreeView *tree_view) /** * gtk_tree_view_set_search_column: * @tree_view: A #GtkTreeView - * @column: the column to search in + * @column: the column of the model to search in * - * Sets @column as the column where the interactive search code should search - * in. Additionally, turns on interactive searching. + * Sets @column as the column where the interactive search code should + * search in. Additionally, turns on interactive searching. Note that + * @column refers to a column of the model. */ void gtk_tree_view_set_search_column (GtkTreeView *tree_view, diff --git a/gtk/gtktreeviewcolumn.c b/gtk/gtktreeviewcolumn.c index 86df4839a2..34c5d3b832 100644 --- a/gtk/gtktreeviewcolumn.c +++ b/gtk/gtktreeviewcolumn.c @@ -2093,7 +2093,7 @@ gtk_tree_view_column_get_reorderable (GtkTreeViewColumn *tree_column) * gtk_tree_view_column_set_sort_column_id: * @tree_column: a #GtkTreeViewColumn * @sort_column_id: The @sort_column_id of the model to sort on. - * + * * Sets the logical @sort_column_id that this column sorts on when this column * is selected for sorting. Doing so makes the column header clickable. **/ @@ -2145,7 +2145,8 @@ gtk_tree_view_column_set_sort_column_id (GtkTreeViewColumn *tree_column, * @tree_column: a #GtkTreeViewColumn * * Gets the logical @sort_column_id that the model sorts on when this - * column is selected for sorting. See gtk_tree_view_column_set_sort_column_id(). + * column is selected for sorting. + * See gtk_tree_view_column_set_sort_column_id(). * * Return value: the current @sort_column_id for this column, or -1 if * this column can't be used for sorting. |