From ab9a58f4241d8fbd97064c56594a310ac7c2dbaa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 3 May 2006 13:11:18 +0000 Subject: [PATCH] include volume in path returned by GetPathWithSep() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38997 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/filename.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/filename.h b/include/wx/filename.h index cba406de35..1d4f7f66d2 100644 --- a/include/wx/filename.h +++ b/include/wx/filename.h @@ -443,7 +443,7 @@ public: { return GetPath(withSep ? wxPATH_GET_SEPARATOR : 0, format); } #endif wxString GetPathWithSep(wxPathFormat format = wxPATH_NATIVE ) const - { return GetPath(wxPATH_GET_SEPARATOR, format); } + { return GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR, format); } private: // check whether this dir is valid for Append/Prepend/InsertDir() -- 2.45.2