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/gtkprinter-private.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/gtkprinter-private.h')
-rw-r--r-- | gtk/gtkprinter-private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkprinter-private.h b/gtk/gtkprinter-private.h index 49663c0da2..99ece474b1 100644 --- a/gtk/gtkprinter-private.h +++ b/gtk/gtkprinter-private.h @@ -32,7 +32,7 @@ G_BEGIN_DECLS gboolean _gtk_printer_has_details (GtkPrinter *printer); void _gtk_printer_request_details (GtkPrinter *printer); GtkPrinterOptionSet *_gtk_printer_get_options (GtkPrinter *printer, - GtkPrintSettings *settings, + GtkPrintSettings *settings, GtkPageSetup *page_setup); gboolean _gtk_printer_mark_conflicts (GtkPrinter *printer, GtkPrinterOptionSet *options); @@ -49,10 +49,10 @@ cairo_surface_t * _gtk_printer_create_cairo_surface (GtkPrinter gint cache_fd); GList * _gtk_printer_list_papers (GtkPrinter *printer); void _gtk_printer_get_hard_margins (GtkPrinter *printer, - double *top, - double *bottom, - double *left, - double *right); + gdouble *top, + gdouble *bottom, + gdouble *left, + gdouble *right); GHashTable * _gtk_printer_get_custom_widgets (GtkPrinter *printer); |