Seal GtkPrintJob.

svn path=/trunk/; revision=20599
This commit is contained in:
Tim Janik 2008-06-20 11:07:45 +00:00
parent ad8fcdd70a
commit 9908eab771

View File

@ -52,20 +52,20 @@ struct _GtkPrintJob
{ {
GObject parent_instance; GObject parent_instance;
GtkPrintJobPrivate *priv; GtkPrintJobPrivate *GSEAL (priv);
/* Settings the client has to implement: /* Settings the client has to implement:
* (These are read-only, set at initialization) * (These are read-only, set at initialization)
*/ */
GtkPrintPages print_pages; GtkPrintPages GSEAL (print_pages);
GtkPageRange *page_ranges; GtkPageRange *GSEAL (page_ranges);
gint num_page_ranges; gint GSEAL (num_page_ranges);
GtkPageSet page_set; GtkPageSet GSEAL (page_set);
gint num_copies; gint GSEAL (num_copies);
gdouble scale; gdouble GSEAL (scale);
guint rotate_to_orientation : 1; guint GSEAL (rotate_to_orientation : 1);
guint collate : 1; guint GSEAL (collate : 1);
guint reverse : 1; guint GSEAL (reverse : 1);
}; };
struct _GtkPrintJobClass struct _GtkPrintJobClass