diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 12:18:31 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 12:22:29 +1000 |
commit | 927617d69a25cffffd96aed8aa14a738b2ba6983 (patch) | |
tree | 1ff740b465f1cbb6d79ae8f4ab5af5c90345a5dd /vcl/generic | |
parent | 808d273db098e2269e53813595a6bfc7b160e28e (diff) |
Renamed ImplGetDPI(X|Y) to GetDPI(X|Y)
Change-Id: If76b99589ddd83431593404c1034b8b726bc3f9b
Diffstat (limited to 'vcl/generic')
-rw-r--r-- | vcl/generic/print/genprnpsp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/generic/print/genprnpsp.cxx b/vcl/generic/print/genprnpsp.cxx index c1331d2fe801..fc85e21e1afc 100644 --- a/vcl/generic/print/genprnpsp.cxx +++ b/vcl/generic/print/genprnpsp.cxx @@ -1069,8 +1069,8 @@ bool PspSalPrinter::StartJob( const OUString* i_pFileName, const OUString& i_rJo bool bAborted = false; PDFNewJobParameters aLastParm; - aContext.DPIx = pPrinter->ImplGetDPIX(); - aContext.DPIy = pPrinter->ImplGetDPIY(); + aContext.DPIx = pPrinter->GetDPIX(); + aContext.DPIy = pPrinter->GetDPIY(); for( int nPage = 0; nPage < nAllPages && ! bAborted; nPage++ ) { if( nPage == nAllPages-1 ) |