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/a11y/gtkscalebuttonaccessible.c | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/a11y/gtkscalebuttonaccessible.c')
-rw-r--r-- | gtk/a11y/gtkscalebuttonaccessible.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/a11y/gtkscalebuttonaccessible.c b/gtk/a11y/gtkscalebuttonaccessible.c index 33e01b2150..7c31735a21 100644 --- a/gtk/a11y/gtkscalebuttonaccessible.c +++ b/gtk/a11y/gtkscalebuttonaccessible.c @@ -158,7 +158,7 @@ gtk_scale_button_accessible_get_n_actions (AtkAction *action) return 2; } -static const gchar * +static const char * gtk_scale_button_accessible_get_description (AtkAction *action, int i) { @@ -173,7 +173,7 @@ gtk_scale_button_accessible_get_description (AtkAction *action, } } -static const gchar * +static const char * gtk_scale_button_accessible_action_get_name (AtkAction *action, int i) { @@ -188,7 +188,7 @@ gtk_scale_button_accessible_action_get_name (AtkAction *action, } } -static const gchar * +static const char * gtk_scale_button_accessible_action_get_localized_name (AtkAction *action, int i) { @@ -301,7 +301,7 @@ gtk_scale_button_accessible_set_current_value (AtkValue *obj, static void gtk_scale_button_accessible_get_value_and_text (AtkValue *obj, gdouble *value, - gchar **text) + char **text) { GtkWidget *widget; GtkAdjustment *adjustment; |