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/gtkfontbutton.c | |
parent | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (diff) | |
download | gtk+-d375dce9f52fd9830069a6fd9287abde93d3f24b.tar.gz |
Replace "gchar" with "char"
Diffstat (limited to 'gtk/gtkfontbutton.c')
-rw-r--r-- | gtk/gtkfontbutton.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index 11ee713591..f7002bef7c 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -68,8 +68,8 @@ struct _GtkFontButton { GtkWidget parent_instance; - gchar *title; - gchar *fontname; + char *title; + char *fontname; guint use_font : 1; guint use_size : 1; @@ -89,7 +89,7 @@ struct _GtkFontButton int font_size; char *font_features; PangoLanguage *language; - gchar *preview_text; + char *preview_text; GtkFontFilterFunc font_filter; gpointer font_filter_data; GDestroyNotify font_filter_data_destroy; @@ -219,7 +219,7 @@ gtk_font_button_update_font_data (GtkFontButton *font_button) PangoFontFamily **families; PangoFontFace **faces; int n_families, n_faces, i; - const gchar *family; + const char *family; g_assert (font_button->font_desc != NULL); @@ -237,7 +237,7 @@ gtk_font_button_update_font_data (GtkFontButton *font_button) faces = NULL; for (i = 0; i < n_families; i++) { - const gchar *name = pango_font_family_get_name (families[i]); + const char *name = pango_font_family_get_name (families[i]); if (!g_ascii_strcasecmp (name, family)) { @@ -267,7 +267,7 @@ gtk_font_button_update_font_data (GtkFontButton *font_button) g_free (faces); } -static gchar * +static char * gtk_font_button_get_preview_text (GtkFontButton *font_button) { if (font_button->font_dialog) @@ -278,7 +278,7 @@ gtk_font_button_get_preview_text (GtkFontButton *font_button) static void gtk_font_button_set_preview_text (GtkFontButton *font_button, - const gchar *preview_text) + const char *preview_text) { if (font_button->font_dialog) { @@ -721,7 +721,7 @@ gtk_font_button_new (void) * Returns: a new font picker widget. */ GtkWidget * -gtk_font_button_new_with_font (const gchar *fontname) +gtk_font_button_new_with_font (const char *fontname) { return g_object_new (GTK_TYPE_FONT_BUTTON, "font", fontname, NULL); } @@ -735,9 +735,9 @@ gtk_font_button_new_with_font (const gchar *fontname) */ void gtk_font_button_set_title (GtkFontButton *font_button, - const gchar *title) + const char *title) { - gchar *old_title; + char *old_title; g_return_if_fail (GTK_IS_FONT_BUTTON (font_button)); old_title = font_button->title; @@ -758,7 +758,7 @@ gtk_font_button_set_title (GtkFontButton *font_button, * * Returns: an internal copy of the title string which must not be freed. */ -const gchar* +const char * gtk_font_button_get_title (GtkFontButton *font_button) { g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), NULL); @@ -888,7 +888,7 @@ gtk_font_button_set_use_size (GtkFontButton *font_button, } } -static const gchar * +static const char * gtk_font_button_get_font_name (GtkFontButton *font_button) { g_return_val_if_fail (GTK_IS_FONT_BUTTON (font_button), NULL); @@ -898,7 +898,7 @@ gtk_font_button_get_font_name (GtkFontButton *font_button) static void gtk_font_button_set_font_name (GtkFontButton *font_button, - const gchar *fontname) + const char *fontname) { PangoFontDescription *font_desc; @@ -1095,7 +1095,7 @@ skip: } } -static gchar * +static char * pango_font_description_to_css (PangoFontDescription *desc, const char *features, const char *language) @@ -1257,7 +1257,7 @@ gtk_font_button_label_use_font (GtkFontButton *font_button) else { PangoFontDescription *desc; - gchar *data; + char *data; if (!font_button->provider) { @@ -1285,9 +1285,9 @@ gtk_font_button_label_use_font (GtkFontButton *font_button) static void gtk_font_button_update_font_info (GtkFontButton *font_button) { - const gchar *fam_name; - const gchar *face_name; - gchar *family_style; + const char *fam_name; + const char *face_name; + char *family_style; if (font_button->font_family) fam_name = pango_font_family_get_name (font_button->font_family); @@ -1309,7 +1309,7 @@ gtk_font_button_update_font_info (GtkFontButton *font_button) if ((font_button->level & GTK_FONT_CHOOSER_LEVEL_SIZE) != 0) { /* mirror Pango, which doesn't translate this either */ - gchar *size = g_strdup_printf ("%2.4g%s", + char *size = g_strdup_printf ("%2.4g%s", pango_font_description_get_size (font_button->font_desc) / (double)PANGO_SCALE, pango_font_description_get_size_is_absolute (font_button->font_desc) ? "px" : ""); |