]> git.saurik.com Git - wxWidgets.git/commitdiff
bug in wxSplitPath() corrected: the returned file name doesn't have the
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 10 Feb 1999 20:47:01 +0000 (20:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 10 Feb 1999 20:47:01 +0000 (20:47 +0000)
trailing dot any more

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1671 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index 364e400c0172eb350384e6412e392b335022c716..c36a08b281125e9dd3af78ee35a3db7cfbcfc94d 100644 (file)
@@ -1555,7 +1555,7 @@ void WXDLLEXPORT wxSplitPath(const char *pszFileName,
   if ( nPosDot > nPosUnix ) {
     // the file name looks like "path/name.ext"
     if ( pstrName )
   if ( nPosDot > nPosUnix ) {
     // the file name looks like "path/name.ext"
     if ( pstrName )
-      *pstrName = wxString(pszFileName + nPosUnix + 1, nPosDot - nPosUnix);
+      *pstrName = wxString(pszFileName + nPosUnix + 1, nPosDot - nPosUnix - 1);
     if ( pstrExt )
       *pstrExt = wxString(pszFileName + nPosDot + 1);
   }
     if ( pstrExt )
       *pstrExt = wxString(pszFileName + nPosDot + 1);
   }