From bcbe86e5922c9a1e4814a44afb8f33e9694bee6a Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 20 Aug 2001 09:04:54 +0000 Subject: [PATCH] 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 --- src/common/filename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 3785a8682e..b9679a11a3 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -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; -- 2.45.2