mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 03:12:56 +00:00
QFontEngineFT::Glyph::glyph_data no longer has be mutable
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
41bfaa6244
commit
6445884ecf
1 changed files with 2 additions and 1 deletions
|
@ -111,7 +111,8 @@ public:
|
|||
void setGlyph(glyph_t index, Glyph *glyph);
|
||||
|
||||
private:
|
||||
mutable QHash<glyph_t, Glyph *> glyph_data; // maps from glyph index to glyph data
|
||||
// maps from glyph index to glyph data
|
||||
QHash<glyph_t, Glyph *> glyph_data;
|
||||
};
|
||||
|
||||
virtual QFontEngine::FaceId faceId() const;
|
||||
|
|
Loading…
Add table
Reference in a new issue