summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorYevgen Muntyan <muntyan@tamu.edu>2007-06-05 17:39:06 +0000
committerYevgen Muntyan <muntyan@src.gnome.org>2007-06-05 17:39:06 +0000
commit7a0ece042969a18a1ed2102774a777b49d844792 (patch)
tree942cd010354f5ab521738b8cc4bcbb023829693d /demos
parent3047c1fcf2c25cae34835435a1fdc3c24ffa661c (diff)
downloadgdk-pixbuf-7a0ece042969a18a1ed2102774a777b49d844792.tar.gz
Drop the phrase saying invisible text doesn't work (#444236).
2007-06-05 Yevgen Muntyan <muntyan@tamu.edu> * demos/gtk-demo/textview.c (insert_text): Drop the phrase saying invisible text doesn't work (#444236). svn path=/trunk/; revision=18044
Diffstat (limited to 'demos')
-rw-r--r--demos/gtk-demo/textview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/gtk-demo/textview.c b/demos/gtk-demo/textview.c
index 7ac11d620..702c765bf 100644
--- a/demos/gtk-demo/textview.c
+++ b/demos/gtk-demo/textview.c
@@ -350,7 +350,7 @@ insert_text (GtkTextBuffer *buffer)
anchor = gtk_text_buffer_create_child_anchor (buffer, &iter);
gtk_text_buffer_insert (buffer, &iter, ".\n", -1);
- gtk_text_buffer_insert (buffer, &iter, "\n\nThis demo doesn't demonstrate all the GtkTextBuffer features; it leaves out, for example: invisible/hidden text (doesn't work in GTK 2, but planned), tab stops, application-drawn areas on the sides of the widget for displaying breakpoints and such...", -1);
+ gtk_text_buffer_insert (buffer, &iter, "\n\nThis demo doesn't demonstrate all the GtkTextBuffer features; it leaves out, for example: invisible/hidden text, tab stops, application-drawn areas on the sides of the widget for displaying breakpoints and such...", -1);
/* Apply word_wrap tag to whole buffer */
gtk_text_buffer_get_bounds (buffer, &start, &end);