]> git.saurik.com Git - wxWidgets.git/commit
Add wxDir::GetNameWithSep() and use it to avoid consecutive slashes.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 May 2012 20:35:31 +0000 (20:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 May 2012 20:35:31 +0000 (20:35 +0000)
commitc9f6f0a8cd0cf20fb93425b7d228c7a4d653625b
tree3828d93f520197727e955fa7e65f9370b2700273
parent50cbca27ad2fb93636b11f2d6754a25b85b93d94
Add wxDir::GetNameWithSep() and use it to avoid consecutive slashes.

It is wrong to use dir.GetName()+"/" to obtain a slash-terminated directory
name as this results in (usually harmless but at best ugly) double slashes at
at the beginning of the string for the root directory. Add GetNameWithSep() to
obtain the correct result in all cases.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
docs/changes.txt
include/wx/dir.h
interface/wx/dir.h
src/common/dircmn.cpp
tests/file/dir.cpp