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

@@ -465,7 +465,7 @@ void wxGenericDirCtrl::Init()
{
m_showHidden = false;
m_currentFilter = 0;
m_currentFilterStr = wxEmptyString; // Default: any file
m_currentFilterStr.clear(); // Default: any file
m_treeCtrl = NULL;
m_filterListCtrl = NULL;
}