Kaydet (Commit) 7b63e739 authored tarafından Don Lewis's avatar Don Lewis

Fix RemovingGlyph method parameter type mismatch between the base

and derived classes (int vs sal_GlyphId) and clean up a related
type mismatch involving this parameter in the base method implementation.
üst ba13ae2c
......@@ -221,7 +221,7 @@ protected:
virtual ServerFontLayoutEngine* GetLayoutEngine() { return NULL; }
private:
typedef ::std::hash_map<int,GlyphData> GlyphList;
typedef ::std::hash_map<sal_GlyphId,GlyphData> GlyphList;
mutable GlyphList maGlyphList;
const ImplFontSelectData maFontSelData;
......@@ -304,7 +304,7 @@ protected:
public:
sal_Int32 GetByteCount() const { return mnBytesUsed; }
virtual void RemovingFont( ServerFont& ) {}
virtual void RemovingGlyph( ServerFont&, GlyphData&, int ) {}
virtual void RemovingGlyph( ServerFont&, GlyphData&, sal_GlyphId ) {}
protected:
sal_Int32 mnBytesUsed;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment