diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-17 00:11:30 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-20 16:11:57 -0500 |
commit | 5971a040f974dcdd0b0d8491d720fa7ad74439b4 (patch) | |
tree | c7c4a273838a908ac5e8dfb7dcd320443283aebe /vcl/source/gdi/print.cxx | |
parent | 98da670aef5c4f964c612cbdd4579c9b3eb39715 (diff) |
rename ImplDevFontList to PhysicalFontCollection
again, convergence of teh naming with what is normally
used in the underlying native API,
where FontFace ) FontFamily ) FontCollection
Change-Id: Ieb098b782ea828a3365f00d07914b9566278caba
Diffstat (limited to 'vcl/source/gdi/print.cxx')
-rw-r--r-- | vcl/source/gdi/print.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/source/gdi/print.cxx b/vcl/source/gdi/print.cxx index ba69c1c97545..a33ba8766cd8 100644 --- a/vcl/source/gdi/print.cxx +++ b/vcl/source/gdi/print.cxx @@ -574,9 +574,9 @@ void Printer::ImplInit( SalPrinterQueueInfo* pInfo ) // Init data ImplUpdatePageData(); - mpFontList = new ImplDevFontList(); + mpFontCollection = new PhysicalFontCollection(); mpFontCache = new ImplFontCache(); - mpGraphics->GetDevFontList( mpFontList ); + mpGraphics->GetDevFontList( mpFontCollection ); } @@ -592,7 +592,7 @@ void Printer::ImplInitDisplay( const Window* pWindow ) mpDisplayDev = new VirtualDevice( *pWindow ); else mpDisplayDev = new VirtualDevice(); - mpFontList = pSVData->maGDIData.mpScreenFontList; + mpFontCollection = pSVData->maGDIData.mpScreenFontList; mpFontCache = pSVData->maGDIData.mpScreenFontCache; mnDPIX = mpDisplayDev->mnDPIX; mnDPIY = mpDisplayDev->mnDPIY; @@ -915,9 +915,9 @@ bool Printer::SetPrinterProps( const Printer* pPrinter ) } // clean up font list delete mpFontCache; - delete mpFontList; + delete mpFontCollection; mpFontCache = NULL; - mpFontList = NULL; + mpFontCollection = NULL; mbInitFont = true; mbNewFont = true; @@ -958,9 +958,9 @@ bool Printer::SetPrinterProps( const Printer* pPrinter ) mpGetDevSizeList = NULL; } delete mpFontCache; - delete mpFontList; + delete mpFontCollection; mpFontCache = NULL; - mpFontList = NULL; + mpFontCollection = NULL; mbInitFont = true; mbNewFont = true; mpInfoPrinter = NULL; |