diff options
Diffstat (limited to 'gtk/gtkpapersize.h')
-rw-r--r-- | gtk/gtkpapersize.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtkpapersize.h b/gtk/gtkpapersize.h index eafe75a76e..04e7389fab 100644 --- a/gtk/gtkpapersize.h +++ b/gtk/gtkpapersize.h @@ -88,19 +88,19 @@ GDK_AVAILABLE_IN_ALL GType gtk_paper_size_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_ALL -GtkPaperSize *gtk_paper_size_new (const gchar *name); +GtkPaperSize *gtk_paper_size_new (const char *name); GDK_AVAILABLE_IN_ALL -GtkPaperSize *gtk_paper_size_new_from_ppd (const gchar *ppd_name, - const gchar *ppd_display_name, +GtkPaperSize *gtk_paper_size_new_from_ppd (const char *ppd_name, + const char *ppd_display_name, gdouble width, gdouble height); GDK_AVAILABLE_IN_ALL -GtkPaperSize *gtk_paper_size_new_from_ipp (const gchar *ipp_name, +GtkPaperSize *gtk_paper_size_new_from_ipp (const char *ipp_name, gdouble width, gdouble height); GDK_AVAILABLE_IN_ALL -GtkPaperSize *gtk_paper_size_new_custom (const gchar *name, - const gchar *display_name, +GtkPaperSize *gtk_paper_size_new_custom (const char *name, + const char *display_name, gdouble width, gdouble height, GtkUnit unit); @@ -117,11 +117,11 @@ GList *gtk_paper_size_get_paper_sizes (gboolean include_custom); /* The width is always the shortest side, measure in mm */ GDK_AVAILABLE_IN_ALL -const gchar *gtk_paper_size_get_name (GtkPaperSize *size); +const char *gtk_paper_size_get_name (GtkPaperSize *size); GDK_AVAILABLE_IN_ALL -const gchar *gtk_paper_size_get_display_name (GtkPaperSize *size); +const char *gtk_paper_size_get_display_name (GtkPaperSize *size); GDK_AVAILABLE_IN_ALL -const gchar *gtk_paper_size_get_ppd_name (GtkPaperSize *size); +const char *gtk_paper_size_get_ppd_name (GtkPaperSize *size); GDK_AVAILABLE_IN_ALL gdouble gtk_paper_size_get_width (GtkPaperSize *size, GtkUnit unit); @@ -153,16 +153,16 @@ gdouble gtk_paper_size_get_default_right_margin (GtkPaperSize *size, GtkUnit unit); GDK_AVAILABLE_IN_ALL -const gchar *gtk_paper_size_get_default (void); +const char *gtk_paper_size_get_default (void); GDK_AVAILABLE_IN_ALL GtkPaperSize *gtk_paper_size_new_from_key_file (GKeyFile *key_file, - const gchar *group_name, + const char *group_name, GError **error); GDK_AVAILABLE_IN_ALL void gtk_paper_size_to_key_file (GtkPaperSize *size, GKeyFile *key_file, - const gchar *group_name); + const char *group_name); GDK_AVAILABLE_IN_ALL GtkPaperSize *gtk_paper_size_new_from_gvariant (GVariant *variant); |