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/gtklinkbutton.h | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/gtklinkbutton.h')
-rw-r--r-- | gtk/gtklinkbutton.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtklinkbutton.h b/gtk/gtklinkbutton.h index aaa922ed43..90390ff7eb 100644 --- a/gtk/gtklinkbutton.h +++ b/gtk/gtklinkbutton.h @@ -42,16 +42,16 @@ GDK_AVAILABLE_IN_ALL GType gtk_link_button_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_ALL -GtkWidget * gtk_link_button_new (const gchar *uri); +GtkWidget * gtk_link_button_new (const char *uri); GDK_AVAILABLE_IN_ALL -GtkWidget * gtk_link_button_new_with_label (const gchar *uri, - const gchar *label); +GtkWidget * gtk_link_button_new_with_label (const char *uri, + const char *label); GDK_AVAILABLE_IN_ALL -const gchar * gtk_link_button_get_uri (GtkLinkButton *link_button); +const char * gtk_link_button_get_uri (GtkLinkButton *link_button); GDK_AVAILABLE_IN_ALL void gtk_link_button_set_uri (GtkLinkButton *link_button, - const gchar *uri); + const char *uri); GDK_AVAILABLE_IN_ALL gboolean gtk_link_button_get_visited (GtkLinkButton *link_button); |