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 | |
parent | ab4264482fd8003068a0fbc10ef19662e5f5eae1 (diff) |
Reorder PspSalPrinter data members for better alignment
Change-Id: I1ee0ed1505e1564fbcb7267feb0913b728e19357
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/unx/genprn.h | 6 | ||||
-rw-r--r-- | vcl/unx/generic/print/genprnpsp.cxx | 12 |
2 files changed, 9 insertions, 9 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(); diff --git a/vcl/unx/generic/print/genprnpsp.cxx b/vcl/unx/generic/print/genprnpsp.cxx index c398b8739c78..9f6b6a956c45 100644 --- a/vcl/unx/generic/print/genprnpsp.cxx +++ b/vcl/unx/generic/print/genprnpsp.cxx @@ -849,12 +849,12 @@ sal_uLong PspSalInfoPrinter::GetCapabilities( const ImplJobSetup* pJobSetup, Pri * SalPrinter */ PspSalPrinter::PspSalPrinter( SalInfoPrinter* pInfoPrinter ) - : m_bPdf( false ), - m_bIsPDFWriterJob( false ), - m_pGraphics( nullptr ), - m_nCopies( 1 ), - m_bCollate( false ), - m_pInfoPrinter( pInfoPrinter ) + : m_pInfoPrinter( pInfoPrinter ) + , m_pGraphics( nullptr ) + , m_nCopies( 1 ) + , m_bCollate( false ) + , m_bPdf( false ) + , m_bIsPDFWriterJob( false ) { } |