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

This commit is contained in:
Paul Cornett
2017-02-18 11:04:30 -08:00
parent 96826d80d2
commit 9d22fbf57e
2 changed files with 2 additions and 2 deletions

View File

@@ -1792,7 +1792,7 @@ wxDocTemplate *wxDocManager::SelectDocumentPath(wxDocTemplate **templates,
msgTitle,
wxOK | wxICON_EXCLAMATION | wxCENTRE);
path = wxEmptyString;
path.clear();
return NULL;
}