diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-04-24 03:47:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-24 03:47:22 +0000 |
commit | 8cf2909eb68d39676d315747ffd8dca1bb48057b (patch) | |
tree | d9714e3acedb354fa0ec91be1ea20e9aa0aeb900 /gtk/gtkprintbackend.h | |
parent | c414c440fee51b8e153263af5ff204bf7cbc3223 (diff) | |
download | gtk+-8cf2909eb68d39676d315747ffd8dca1bb48057b.tar.gz |
Use g types, add documentation, and some stylistic fixups.
2006-04-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprinter-private.h:
* gtk/gtkprintbackend.h:
* gtk/gtkprinter.[hc]:
* gtk/gtkprintjob.[hc]: Use g types, add documentation, and some
stylistic fixups.
* gtk/gtkaboutdialog.c (activate_url): Avoid a compiler warning.
Diffstat (limited to 'gtk/gtkprintbackend.h')
-rw-r--r-- | gtk/gtkprintbackend.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkprintbackend.h b/gtk/gtkprintbackend.h index 940ab49bcf..de225f9e3a 100644 --- a/gtk/gtkprintbackend.h +++ b/gtk/gtkprintbackend.h @@ -134,15 +134,15 @@ void gtk_printer_set_has_details (GtkPrinter *printer, void gtk_printer_set_is_default (GtkPrinter *printer, gboolean val); void gtk_printer_set_icon_name (GtkPrinter *printer, - const char *icon); + const gchar *icon); gboolean gtk_printer_set_job_count (GtkPrinter *printer, - int count); + gint count); gboolean gtk_printer_set_location (GtkPrinter *printer, - const char *location); + const gchar *location); gboolean gtk_printer_set_description (GtkPrinter *printer, - const char *description); + const gchar *description); gboolean gtk_printer_set_state_message (GtkPrinter *printer, - const char *message); + const gchar *message); void gtk_printer_set_is_active (GtkPrinter *printer, gboolean active); |