diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-30 19:16:51 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2016-01-26 21:30:21 +0100 |
commit | 3792dd2482db628bf7a7c8cf85f9ae2c587f3b68 (patch) | |
tree | 48fb4cbaca8908320959560aa000448d957d8725 /vcl/inc | |
parent | ab4264482fd8003068a0fbc10ef19662e5f5eae1 (diff) |
Reorder PspSalPrinter data members for better alignment
Change-Id: I1ee0ed1505e1564fbcb7267feb0913b728e19357
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/unx/genprn.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/unx/genprn.h b/vcl/inc/unx/genprn.h index 1fd8c41d9b0e..f17393553b01 100644 --- a/vcl/inc/unx/genprn.h +++ b/vcl/inc/unx/genprn.h @@ -59,15 +59,15 @@ class VCL_DLLPUBLIC PspSalPrinter : public SalPrinter public: OUString m_aFileName; OUString m_aTmpFile; - bool m_bPdf:1; - bool m_bIsPDFWriterJob:1; + SalInfoPrinter* m_pInfoPrinter; GenPspGraphics* m_pGraphics; psp::PrinterJob m_aPrintJob; psp::JobData m_aJobData; psp::PrinterGfx m_aPrinterGfx; sal_uInt32 m_nCopies; bool m_bCollate; - SalInfoPrinter* m_pInfoPrinter; + bool m_bPdf; + bool m_bIsPDFWriterJob; PspSalPrinter( SalInfoPrinter *pPrinter ); virtual ~PspSalPrinter(); |