diff options
author | Murray Cumming <murrayc@murrayc.com> | 2008-10-20 12:11:05 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2008-10-20 12:11:05 +0000 |
commit | 093d425393c5a58cb2161944f612779bbdb5e260 (patch) | |
tree | 237302b4ac0d3a2a03e746619e9c0369519ff439 /gtk | |
parent | 70023b69cb7d206c4416a95eefadb763c8e9c1cb (diff) | |
download | gtk+-093d425393c5a58cb2161944f612779bbdb5e260.tar.gz |
gtk_icon_view_set_tooltip_row(), gtk_icon_view_set_tooltip_item():
2008-10-20 Murray Cumming <murrayc@murrayc.com>
* gtk/gtkiconview.c: gtk_icon_view_set_tooltip_row(),
gtk_icon_view_set_tooltip_item():
* gtk/gtktreeview.c: gtk_icon_view_set_tooltip_row(),
gtk_icon_view_set_tooltip_cell():
Documentation: Mention the simple set_tooltip_column()
alternative.
svn path=/trunk/; revision=21689
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkiconview.c | 3 | ||||
-rw-r--r-- | gtk/gtktreeview.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index 30a75bc828..ce7c1ee740 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -4734,6 +4734,7 @@ gtk_icon_view_get_item_at_pos (GtkIconView *icon_view, * @path: a #GtkTreePath * * Sets the tip area of @tooltip to be the area covered by the item at @path. + * See also gtk_icon_view_set_tooltip_column() for a simpler alternative. * See also gtk_tooltip_set_tip_area(). * * Since: 2.12 @@ -4759,6 +4760,8 @@ gtk_icon_view_set_tooltip_item (GtkIconView *icon_view, * Sets the tip area of @tooltip to the area which @cell occupies in * the item pointed to by @path. See also gtk_tooltip_set_tip_area(). * + * See also gtk_icon_view_set_tooltip_column() for a simpler alternative. + * * Since: 2.12 */ void diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index d663e2664d..0ef05b2672 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -15367,6 +15367,7 @@ gtk_tree_view_get_level_indentation (GtkTreeView *tree_view) * @path: a #GtkTreePath * * Sets the tip area of @tooltip to be the area covered by the row at @path. + * See also gtk_tree_view_set_tooltip_column() for a simpler alternative. * See also gtk_tooltip_set_tip_area(). * * Since: 2.12 @@ -15400,6 +15401,8 @@ gtk_tree_view_set_tooltip_row (GtkTreeView *tree_view, * position. In such cases @path must be set to the current node under the * mouse cursor for this function to operate correctly. * + * See also gtk_tree_view_set_tooltip_column() for a simpler alternative. + * * Since: 2.12 */ void |