mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
remove unused QFontEngine::FaceId::uuid member
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
ffc5aa02dd
commit
b045bbb24c
1 changed files with 1 additions and 2 deletions
|
@ -101,7 +101,6 @@ public:
|
|||
struct FaceId {
|
||||
FaceId() : index(0), encoding(0) {}
|
||||
QByteArray filename;
|
||||
QByteArray uuid;
|
||||
int index;
|
||||
int encoding;
|
||||
};
|
||||
|
@ -237,7 +236,7 @@ inline bool operator ==(const QFontEngine::FaceId &f1, const QFontEngine::FaceId
|
|||
|
||||
inline uint qHash(const QFontEngine::FaceId &f)
|
||||
{
|
||||
return qHash((f.index << 16) + f.encoding) + qHash(f.filename + f.uuid);
|
||||
return qHash((f.index << 16) + f.encoding) + qHash(f.filename);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue