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

@@ -1311,7 +1311,7 @@ void wxGridStringTable::Clear()
{
for ( col = 0; col < numCols; col++ )
{
m_data[row][col] = wxEmptyString;
m_data[row][col].clear();
}
}
}