Remove unnecessary wxFontRefData::operator==() in wxQt

It wasn't used anywhere anyhow.
This commit is contained in:
Vadim Zeitlin
2018-09-14 17:36:29 +02:00
parent d002acfec6
commit 8715e56676

View File

@@ -111,11 +111,6 @@ public:
m_nativeFontInfo.m_qtFont = data.m_nativeFontInfo.m_qtFont;
}
bool operator == (const wxFontRefData& data) const
{
return m_nativeFontInfo.m_qtFont == data.m_nativeFontInfo.m_qtFont;
}
wxNativeFontInfo m_nativeFontInfo;
};