summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-16 20:54:05 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-20 16:11:56 -0500
commit98da670aef5c4f964c612cbdd4579c9b3eb39715 (patch)
tree2633eefce0f68fded33b9c4bfa35cf2c96bb6d85 /vcl/inc
parentcabee397b9e8d2b1bc400972db538c4bd79f7f59 (diff)
replace DevFontList with PhysicalFontFamilies propagate the naming change
Change-Id: Ib3a4ce44d4bdde5570ece84e7399743ee7b8418f
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/outfont.hxx6
1 files changed, 3 insertions, 3 deletions
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<const OUString, PhysicalFontFamily*,FontNameHash> DevFontList;
- DevFontList maDevFontList;
+ typedef boost::unordered_map<const OUString, PhysicalFontFamily*,FontNameHash> 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;