diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-06-14 12:58:14 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-06-14 12:58:14 +0000 |
commit | 3f0fb50471fab9bbba5dd282ba539125a168ef83 (patch) | |
tree | 6c4cc8bb321d1e8eda0abc17020e2a7fc59859d7 /gtk/gtkprintjob.h | |
parent | cb30c1b66bb45da8a06b487dd5c1ad17801ba6f6 (diff) | |
download | gtk+-3f0fb50471fab9bbba5dd282ba539125a168ef83.tar.gz |
Minor space savings
Diffstat (limited to 'gtk/gtkprintjob.h')
-rw-r--r-- | gtk/gtkprintjob.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/gtkprintjob.h b/gtk/gtkprintjob.h index 758fa5387c..5273c856d0 100644 --- a/gtk/gtkprintjob.h +++ b/gtk/gtkprintjob.h @@ -66,13 +66,12 @@ struct _GtkPrintJob GtkPrintPages print_pages; GtkPageRange *page_ranges; gint num_page_ranges; - gboolean rotate_to_orientation; - GtkPageSet page_set; gint num_copies; - gboolean collate; - gboolean reverse; gdouble scale; + guint rotate_to_orientation : 1; + guint collate : 1; + guint reverse : 1; }; struct _GtkPrintJobClass |