Use wxString::clear() instead of assignment to wxEmptyString

This commit is contained in:
Paul Cornett
2018-05-11 10:52:56 -07:00
parent 7d039a2e0b
commit 98cd5a6b20
18 changed files with 30 additions and 33 deletions

View File

@@ -744,7 +744,7 @@ void wxRichTextHeaderFooterData::Clear()
{
int i;
for (i = 0; i < 12; i++)
m_text[i] = wxEmptyString;
m_text[i].clear();
}
#endif // wxUSE_RICHTEXT & wxUSE_PRINTING_ARCHITECTURE