Remove accidental global variable from the font sample

This variable was never used and appears to have been created
accidentally, so just remove it and avoid variable shadowing warnings
from MSVS 2015 when building the sample.
This commit is contained in:
Vadim Zeitlin 2017-11-07 18:28:54 +01:00
parent 83b02930f4
commit b130595975

View File

@ -476,7 +476,7 @@ protected:
private:
wxArrayString m_facenames;
} fontEnumerator;
};
bool MyFrame::DoEnumerateFamilies(bool fixedWidthOnly,
wxFontEncoding encoding,