summaryrefslogtreecommitdiff
path: root/examples/application7/exampleappwin.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/application7/exampleappwin.c')
-rw-r--r--examples/application7/exampleappwin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/application7/exampleappwin.c b/examples/application7/exampleappwin.c
index 67db00d573..dad967a940 100644
--- a/examples/application7/exampleappwin.c
+++ b/examples/application7/exampleappwin.c
@@ -20,7 +20,7 @@ static void
search_text_changed (GtkEntry *entry,
ExampleAppWindow *win)
{
- const gchar *text;
+ const char *text;
GtkWidget *tab;
GtkWidget *view;
GtkTextBuffer *buffer;
@@ -120,9 +120,9 @@ void
example_app_window_open (ExampleAppWindow *win,
GFile *file)
{
- gchar *basename;
+ char *basename;
GtkWidget *scrolled, *view;
- gchar *contents;
+ char *contents;
gsize length;
GtkTextBuffer *buffer;
GtkTextTag *tag;