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

This commit is contained in:
Paul Cornett
2017-02-18 11:00:26 -08:00
parent 4821bb4072
commit 96826d80d2
9 changed files with 18 additions and 18 deletions

View File

@@ -42,7 +42,7 @@ wxHtmlStyleParams::wxHtmlStyleParams(const wxHtmlTag& tag)
else
{
// Syntax problem change to blank string
wd = "";
wd.clear();
}
}