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/gtkscalebutton.h | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/gtkscalebutton.h')
-rw-r--r-- | gtk/gtkscalebutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkscalebutton.h b/gtk/gtkscalebutton.h index c9dd397594..7226d92ee5 100644 --- a/gtk/gtkscalebutton.h +++ b/gtk/gtkscalebutton.h @@ -76,10 +76,10 @@ GDK_AVAILABLE_IN_ALL GtkWidget * gtk_scale_button_new (gdouble min, gdouble max, gdouble step, - const gchar **icons); + const char **icons); GDK_AVAILABLE_IN_ALL void gtk_scale_button_set_icons (GtkScaleButton *button, - const gchar **icons); + const char **icons); GDK_AVAILABLE_IN_ALL gdouble gtk_scale_button_get_value (GtkScaleButton *button); GDK_AVAILABLE_IN_ALL |