diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-07 00:08:00 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-07 00:08:00 +0000 |
commit | cad36b3c42ae7bb09345af709c2ac37dd1a37198 (patch) | |
tree | 2ce1512a2a44157bf364980a9d175f3cd2ef9893 | |
parent | 7f12a27249aa091f242c1a18993c2777c68e0216 (diff) | |
download | gtk+-cad36b3c42ae7bb09345af709c2ac37dd1a37198.tar.gz |
Doc improvement
svn path=/trunk/; revision=20799
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gtk/gtktreeview.c | 3 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2008-07-06 Matthias Clasen <mclasen@redhat.com> + Bug 507953 – gtk_tree_view_set_tooltip_column() shows markups + + * gtk/gtktreeview.c (gtk_tree_view_set_tooltip_column): Mention + that the tooltip is set as markup. Proposed by Czirkos Zoltan. + +2008-07-06 Matthias Clasen <mclasen@redhat.com> + Bug 510225 – gtk_widget_get_composite_name retval should be freed * gtk/gtkwidget.c (gtk_widget_get_composite_name): Clarify the diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index c6bd79e0d9..5da659d6a7 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -15553,6 +15553,9 @@ gtk_tree_view_set_tooltip_query_cb (GtkWidget *widget, * When enabled, #GtkWidget::has-tooltip will be set to %TRUE and * @tree_view will connect a #GtkWidget::query-tooltip signal handler. * + * Note that the signal handler sets the text with gtk_tooltip_set_markup(), + * so &, <, etc have to be escaped in the text. + * * Since: 2.12 */ void |