summaryrefslogtreecommitdiff
path: root/vcl/inc/unx/gcach_ftyp.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/unx/gcach_ftyp.hxx')
-rw-r--r--vcl/inc/unx/gcach_ftyp.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/unx/gcach_ftyp.hxx b/vcl/inc/unx/gcach_ftyp.hxx
index 084ea03a01ab..dae148dc339e 100644
--- a/vcl/inc/unx/gcach_ftyp.hxx
+++ b/vcl/inc/unx/gcach_ftyp.hxx
@@ -58,7 +58,7 @@ private:
class FreetypeFontInfo
{
public:
- FreetypeFontInfo( const ImplFontAttributes&,
+ FreetypeFontInfo( const FontAttributes&,
const OString& rNativeFileName,
int nFaceNum, sal_IntPtr nFontId);
~FreetypeFontInfo();
@@ -74,7 +74,7 @@ public:
const OString& GetFontFileName() const { return mpFontFile->GetFileName(); }
sal_IntPtr GetFontId() const { return mnFontId; }
bool IsSymbolFont() const { return maDevFontAttributes.IsSymbolFont(); }
- const ImplFontAttributes& GetFontAttributes() const { return maDevFontAttributes; }
+ const FontAttributes& GetFontAttributes() const { return maDevFontAttributes; }
void AnnounceFont( PhysicalFontCollection* );
@@ -94,7 +94,7 @@ private:
GraphiteFaceWrapper * mpGraphiteFace;
#endif
sal_IntPtr mnFontId;
- ImplFontAttributes maDevFontAttributes;
+ FontAttributes maDevFontAttributes;
FontCharMapPtr mpFontCharMap;
@@ -133,7 +133,7 @@ public:
~FreetypeManager();
void AddFontFile( const OString& rNormalizedName,
- int nFaceNum, sal_IntPtr nFontId, const ImplFontAttributes&);
+ int nFaceNum, sal_IntPtr nFontId, const FontAttributes&);
void AnnounceFonts( PhysicalFontCollection* ) const;
void ClearFontList();
@@ -152,7 +152,7 @@ private:
FreetypeFontInfo* mpFreetypeFontInfo;
public:
- FreetypeFontFace( FreetypeFontInfo*, const ImplFontAttributes& );
+ FreetypeFontFace( FreetypeFontInfo*, const FontAttributes& );
virtual LogicalFontInstance* CreateFontInstance( FontSelectPattern& ) const override;
virtual PhysicalFontFace* Clone() const override { return new FreetypeFontFace( *this ); }