Remove unnecessary wxFontRefData dtor

No real changes, just get rid of unnecessary code.
This commit is contained in:
Vadim Zeitlin
2018-09-12 20:25:43 +02:00
parent a0d5b1e5da
commit 11ab3b4786

View File

@@ -54,8 +54,6 @@ public:
// copy ctor
wxFontRefData( const wxFontRefData& data );
virtual ~wxFontRefData();
// setters: all of them also take care to modify m_nativeFontInfo if we
// have it so as to not lose the information not carried by our fields
void SetFractionalPointSize(float pointSize);
@@ -164,10 +162,6 @@ wxFontRefData::wxFontRefData(const wxString& nativeFontInfoString)
InitFromNative();
}
wxFontRefData::~wxFontRefData()
{
}
// ----------------------------------------------------------------------------
// wxFontRefData SetXXX()
// ----------------------------------------------------------------------------