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/gtkbutton.c | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/gtkbutton.c')
-rw-r--r-- | gtk/gtkbutton.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkbutton.c b/gtk/gtkbutton.c index 2cb79cc483..a5c1700017 100644 --- a/gtk/gtkbutton.c +++ b/gtk/gtkbutton.c @@ -470,7 +470,7 @@ gtk_button_dispose (GObject *object) static void gtk_button_set_action_name (GtkActionable *actionable, - const gchar *action_name) + const char *action_name) { GtkButton *button = GTK_BUTTON (actionable); GtkButtonPrivate *priv = gtk_button_get_instance_private (button); @@ -573,7 +573,7 @@ gtk_button_get_property (GObject *object, } } -static const gchar * +static const char * gtk_button_get_action_name (GtkActionable *actionable) { GtkButton *button = GTK_BUTTON (actionable); @@ -606,7 +606,7 @@ static void gtk_button_buildable_add_child (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, - const gchar *type) + const char *type) { if (GTK_IS_WIDGET (child)) gtk_button_set_child (GTK_BUTTON (buildable), GTK_WIDGET (child)); @@ -646,7 +646,7 @@ gtk_button_new (void) * Returns: The newly created #GtkButton widget. */ GtkWidget* -gtk_button_new_with_label (const gchar *label) +gtk_button_new_with_label (const char *label) { return g_object_new (GTK_TYPE_BUTTON, "label", label, NULL); } @@ -664,7 +664,7 @@ gtk_button_new_with_label (const gchar *label) * Returns: a new #GtkButton displaying the themed icon */ GtkWidget* -gtk_button_new_from_icon_name (const gchar *icon_name) +gtk_button_new_from_icon_name (const char *icon_name) { GtkWidget *button; @@ -690,7 +690,7 @@ gtk_button_new_from_icon_name (const gchar *icon_name) * Returns: a new #GtkButton */ GtkWidget* -gtk_button_new_with_mnemonic (const gchar *label) +gtk_button_new_with_mnemonic (const char *label) { return g_object_new (GTK_TYPE_BUTTON, "label", label, "use-underline", TRUE, NULL); } @@ -824,7 +824,7 @@ gtk_button_finish_activate (GtkButton *button, */ void gtk_button_set_label (GtkButton *button, - const gchar *label) + const char *label) { GtkButtonPrivate *priv = gtk_button_get_instance_private (button); GtkWidget *child; @@ -874,7 +874,7 @@ gtk_button_set_label (GtkButton *button, * Returns: (nullable): The text of the label widget. This string is owned * by the widget and must not be modified or freed. */ -const gchar * +const char * gtk_button_get_label (GtkButton *button) { GtkButtonPrivate *priv = gtk_button_get_instance_private (button); |