Reinstate wxTextCtrl unit test previously disabled for wxQt

This test was fixed by earlier changes to wxQt font styles and passes
now.

Closes https://github.com/wxWidgets/wxWidgets/pull/1169
This commit is contained in:
Richard Smith 2019-01-23 13:08:30 +00:00 committed by Vadim Zeitlin
parent 9c16a3748e
commit 537b2c3bb0

View File

@ -496,7 +496,6 @@ void TextCtrlTestCase::Style()
void TextCtrlTestCase::FontStyle()
{
#if !defined(__WXQT__)
// We need wxTE_RICH under MSW and wxTE_MULTILINE under GTK for style
// support so recreate the control with these styles.
delete m_text;
@ -547,9 +546,6 @@ void TextCtrlTestCase::FontStyle()
fontOut.SetEncoding(fontIn.GetEncoding());
#endif
CPPUNIT_ASSERT_EQUAL( fontIn, fontOut );
#else
WARN("Does not work under WxQt");
#endif
}
void TextCtrlTestCase::Lines()