diff options
Diffstat (limited to 'vcl/quartz/ctfonts.cxx')
-rw-r--r-- | vcl/quartz/ctfonts.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx index c9a2116c298b..2506d31c973d 100644 --- a/vcl/quartz/ctfonts.cxx +++ b/vcl/quartz/ctfonts.cxx @@ -455,11 +455,11 @@ void SystemFontList::AddFont( CoreTextFontData* pFontData ) -void SystemFontList::AnnounceFonts( ImplDevFontList& rFontList ) const +void SystemFontList::AnnounceFonts( PhysicalFontCollection& rFontCollection ) const { CTFontContainer::const_iterator it = maFontContainer.begin(); for(; it != maFontContainer.end(); ++it ) - rFontList.Add( (*it).second->Clone() ); + rFontCollection.Add( (*it).second->Clone() ); } |