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 /gtk/gtkcellview.c | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/gtkcellview.c')
-rw-r--r-- | gtk/gtkcellview.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkcellview.c b/gtk/gtkcellview.c index d072ef6f13..1188c7bfc9 100644 --- a/gtk/gtkcellview.c +++ b/gtk/gtkcellview.c @@ -90,13 +90,13 @@ static void gtk_cell_view_buildable_init (GtkBuildableIface static gboolean gtk_cell_view_buildable_custom_tag_start (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *tagname, + const char *tagname, GtkBuildableParser *parser, gpointer *data); static void gtk_cell_view_buildable_custom_tag_end (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *tagname, + const char *tagname, gpointer data); static GtkSizeRequestMode gtk_cell_view_get_request_mode (GtkWidget *widget); @@ -289,7 +289,7 @@ static void gtk_cell_view_buildable_add_child (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *type) + const char *type) { if (GTK_IS_CELL_RENDERER (child)) _gtk_cell_layout_buildable_add_child (buildable, builder, child, type); @@ -750,7 +750,7 @@ static gboolean gtk_cell_view_buildable_custom_tag_start (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *tagname, + const char *tagname, GtkBuildableParser *parser, gpointer *data) { @@ -767,7 +767,7 @@ static void gtk_cell_view_buildable_custom_tag_end (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *tagname, + const char *tagname, gpointer data) { if (_gtk_cell_layout_buildable_custom_tag_end (buildable, builder, child, tagname, @@ -870,7 +870,7 @@ gtk_cell_view_new_with_context (GtkCellArea *area, * Returns: A newly created #GtkCellView widget. */ GtkWidget * -gtk_cell_view_new_with_text (const gchar *text) +gtk_cell_view_new_with_text (const char *text) { GtkCellView *cellview; GtkCellRenderer *renderer; @@ -901,7 +901,7 @@ gtk_cell_view_new_with_text (const gchar *text) * Returns: A newly created #GtkCellView widget. */ GtkWidget * -gtk_cell_view_new_with_markup (const gchar *markup) +gtk_cell_view_new_with_markup (const char *markup) { GtkCellView *cellview; GtkCellRenderer *renderer; |