Remove initializations of wxString with wxEmptyString

An empty string is the default
This commit is contained in:
Paul Cornett
2017-02-18 10:32:56 -08:00
parent 5e7db7c0f1
commit d886f8cce9
4 changed files with 2 additions and 5 deletions

View File

@@ -153,7 +153,7 @@ wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location)
/* static */
wxString wxFileSystemHandler::GetProtocol(const wxString& location)
{
wxString s = wxEmptyString;
wxString s;
int i, l = location.length();
bool fnd = false;