Fixed GetLongPath bug -- should use GetFullName and not GetName

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2001-08-20 09:04:54 +00:00
parent 7af284fda7
commit bcbe86e592

View File

@ -666,7 +666,7 @@ wxString wxFileName::GetLongPath() const
pathOut = wxEmptyString;
wxArrayString dirs = GetDirs();
dirs.Add(GetName());
dirs.Add(GetFullName());
size_t count = dirs.GetCount();
size_t i;