From 98da670aef5c4f964c612cbdd4579c9b3eb39715 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sun, 16 Mar 2014 20:54:05 -0500 Subject: replace DevFontList with PhysicalFontFamilies propagate the naming change Change-Id: Ib3a4ce44d4bdde5570ece84e7399743ee7b8418f --- vcl/inc/outfont.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/inc') diff --git a/vcl/inc/outfont.hxx b/vcl/inc/outfont.hxx index afcdb5278510..01894f253baf 100644 --- a/vcl/inc/outfont.hxx +++ b/vcl/inc/outfont.hxx @@ -217,8 +217,8 @@ private: mutable bool mbMatchData; // true if matching attributes are initialized bool mbMapNames; // true if MapNames are available - typedef boost::unordered_map DevFontList; - DevFontList maDevFontList; + typedef boost::unordered_map PhysicalFontFamilies; + PhysicalFontFamilies maPhysicalFontFamilies; ImplPreMatchFontSubstitution* mpPreMatchHook; // device specific prematch substitution ImplGlyphFallbackFontSubstitution* mpFallbackHook; // device specific glyh fallback substitution @@ -230,7 +230,7 @@ public: // fill the list with device fonts void Add( PhysicalFontFace* ); void Clear(); - int Count() const { return maDevFontList.size(); } + int Count() const { return maPhysicalFontFamilies.size(); } // find the device font PhysicalFontFamily* FindFontFamily( const OUString& rFontName ) const; -- cgit