Kaydet (Commit) 565611a1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:staticmethods

Change-Id: I1aeec1e8b00ab0f9e7ec130b6d72b69f35a304cf
üst 27cff71c
......@@ -97,7 +97,7 @@ class AquaSalInfoPrinter : public SalInfoPrinter
bool AbortJob();
SalGraphics* StartPage( ImplJobSetup* i_pSetupData, bool i_bNewJobData );
bool EndPage();
sal_uLong GetErrorCode() const;
static sal_uLong GetErrorCode();
NSPrintInfo* getPrintInfo() const { return mpPrintInfo; }
void setStartPageOffset( int nOffsetX, int nOffsetY ) { mnStartPageOffsetX = nOffsetX; mnStartPageOffsetY = nOffsetY; }
......
......@@ -563,7 +563,7 @@ bool AquaSalInfoPrinter::EndPage()
return true;
}
sal_uLong AquaSalInfoPrinter::GetErrorCode() const
sal_uLong AquaSalInfoPrinter::GetErrorCode()
{
return 0;
}
......@@ -620,7 +620,7 @@ bool AquaSalPrinter::EndPage()
sal_uLong AquaSalPrinter::GetErrorCode()
{
return mpInfoPrinter->GetErrorCode();
return AquaSalInfoPrinter::GetErrorCode();
}
void AquaSalInfoPrinter::InitPaperFormats( const ImplJobSetup* )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment