summaryrefslogtreecommitdiff
path: root/examples/application3
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 20:40:36 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd375dce9f52fd9830069a6fd9287abde93d3f24b (patch)
treecd759ec130e07189ab7f19ebd03b8e89923aaa7f /examples/application3
parentd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff)
downloadgtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz
Replace "gchar" with "char"
Diffstat (limited to 'examples/application3')
-rw-r--r--examples/application3/exampleapp.c2
-rw-r--r--examples/application3/exampleappwin.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/application3/exampleapp.c b/examples/application3/exampleapp.c
index a730c1f555..9e99e8560a 100644
--- a/examples/application3/exampleapp.c
+++ b/examples/application3/exampleapp.c
@@ -28,7 +28,7 @@ static void
example_app_open (GApplication *app,
GFile **files,
int n_files,
- const gchar *hint)
+ const char *hint)
{
GList *windows;
ExampleAppWindow *win;
diff --git a/examples/application3/exampleappwin.c b/examples/application3/exampleappwin.c
index 3925fa4689..5cc4275598 100644
--- a/examples/application3/exampleappwin.c
+++ b/examples/application3/exampleappwin.c
@@ -36,9 +36,9 @@ void
example_app_window_open (ExampleAppWindow *win,
GFile *file)
{
- gchar *basename;
+ char *basename;
GtkWidget *scrolled, *view;
- gchar *contents;
+ char *contents;
gsize length;
basename = g_file_get_basename (file);