~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/print/print.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
typedef struct
28
28
{
29
 
  gint                num_pages;
30
29
  gint32              image_id;
31
30
  gint32              drawable_id;
32
31
  GimpUnit            unit;
33
 
  gboolean            show_info_header;
34
32
  gdouble             xres;
35
33
  gdouble             yres;
36
34
  GimpUnit            image_unit;
39
37
  PrintCenterMode     center;
40
38
  gboolean            use_full_page;
41
39
  GtkPrintOperation  *operation;
42
 
  GtkPageOrientation  orientation;
43
40
} PrintData;
44
41