From 1ce7c76cdadbe3809d5c83a5f9eee5b693aa7ca6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 29 Jul 2015 19:07:56 -0400 Subject: [PATCH] gtk-demo: Rename textview demos to "Text View" Fits better with "Tree View". --- demos/gtk-demo/hypertext.c | 2 +- demos/gtk-demo/markup.c | 2 +- demos/gtk-demo/textscroll.c | 2 +- demos/gtk-demo/textview.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/demos/gtk-demo/hypertext.c b/demos/gtk-demo/hypertext.c index af4e4179a7..60d6711ad3 100644 --- a/demos/gtk-demo/hypertext.c +++ b/demos/gtk-demo/hypertext.c @@ -1,4 +1,4 @@ -/* Text Widget/Hypertext +/* Text View/Hypertext * * Usually, tags modify the appearance of text in the view, e.g. making it * bold or colored or underlined. But tags are not restricted to appearance. diff --git a/demos/gtk-demo/markup.c b/demos/gtk-demo/markup.c index 2934a52a6d..08b0689214 100644 --- a/demos/gtk-demo/markup.c +++ b/demos/gtk-demo/markup.c @@ -1,4 +1,4 @@ -/* Text Widget/Markup +/* Text View/Markup * * GtkTextBuffer lets you define your own tags that can influence * text formatting in a variety of ways. In this example, we show diff --git a/demos/gtk-demo/textscroll.c b/demos/gtk-demo/textscroll.c index 0008838496..3c14605554 100644 --- a/demos/gtk-demo/textscroll.c +++ b/demos/gtk-demo/textscroll.c @@ -1,4 +1,4 @@ -/* Text Widget/Automatic Scrolling +/* Text View/Automatic Scrolling * * This example demonstrates how to use the gravity of * GtkTextMarks to keep a text view scrolled to the bottom diff --git a/demos/gtk-demo/textview.c b/demos/gtk-demo/textview.c index f1fc6bb33e..13ea318d1c 100644 --- a/demos/gtk-demo/textview.c +++ b/demos/gtk-demo/textview.c @@ -1,4 +1,4 @@ -/* Text Widget/Multiple Views +/* Text View/Multiple Views * * The GtkTextView widget displays a GtkTextBuffer. One GtkTextBuffer * can be displayed by multiple GtkTextViews. This demo has two views