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/headless | |
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/headless')
-rw-r--r-- | vcl/headless/svptext.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/headless/svptext.cxx b/vcl/headless/svptext.cxx index 22c786ca6a2a..f04822974a5e 100644 --- a/vcl/headless/svptext.cxx +++ b/vcl/headless/svptext.cxx @@ -255,7 +255,7 @@ bool SvpSalGraphics::GetImplFontCapabilities(vcl::FontCapabilities &rFontCapabil } -void SvpSalGraphics::GetDevFontList( ImplDevFontList* pDevFontList ) +void SvpSalGraphics::GetDevFontList( PhysicalFontCollection* pFontCollection ) { GlyphCache& rGC = SvpGlyphCache::GetInstance(); @@ -280,10 +280,10 @@ void SvpSalGraphics::GetDevFontList( ImplDevFontList* pDevFontList ) } // announce glyphcache fonts - rGC.AnnounceFonts( pDevFontList ); + rGC.AnnounceFonts( pFontCollection ); // register platform specific font substitutions if available - SalGenericInstance::RegisterFontSubstitutors( pDevFontList ); + SalGenericInstance::RegisterFontSubstitutors( pFontCollection ); ImplGetSVData()->maGDIData.mbNativeFontConfig = true; } @@ -295,7 +295,7 @@ void SvpSalGraphics::ClearDevFontCache() } -bool SvpSalGraphics::AddTempDevFont( ImplDevFontList*, +bool SvpSalGraphics::AddTempDevFont( PhysicalFontCollection*, const OUString&, const OUString& ) { return false; |