diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 20:40:36 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | d375dce9f52fd9830069a6fd9287abde93d3f24b (patch) | |
tree | cd759ec130e07189ab7f19ebd03b8e89923aaa7f /tests/testnotebookdnd.c | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'tests/testnotebookdnd.c')
-rw-r--r-- | tests/testnotebookdnd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testnotebookdnd.c b/tests/testnotebookdnd.c index 3858aa6383..5bb1ce4458 100644 --- a/tests/testnotebookdnd.c +++ b/tests/testnotebookdnd.c @@ -175,7 +175,7 @@ create_notebook (const char **labels, static GtkWidget* create_notebook_non_dragable_content (const char **labels, - const gchar *group, + const char *group, GtkPositionType pos) { GtkWidget *notebook, *title, *page, *action_widget; @@ -226,7 +226,7 @@ create_notebook_non_dragable_content (const char **labels, static GtkWidget* create_notebook_with_notebooks (const char **labels, - const gchar *group, + const char *group, GtkPositionType pos) { GtkWidget *notebook, *title, *page; @@ -287,7 +287,7 @@ quit_cb (GtkWidget *widget, } int -main (int argc, gchar *argv[]) +main (int argc, char *argv[]) { GtkWidget *window, *grid; gboolean done = FALSE; |