2010-04-23 23:05 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbide/idemisc.prg
    ! Fixed to store original filename without case convertion inside .hbp.
      It fixes issue on linux if source file name contains mix case.
This commit is contained in:
Pritpal Bedi
2010-04-24 06:08:53 +00:00
parent 9267535575
commit b3f8077e15
2 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-04-23 23:05 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idemisc.prg
! Fixed to store original filename without case convertion inside .hbp.
It fixes issue on linux if source file name contains mix case.
2010-04-23 17:12 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/gtwvg/wvgpushb.prg
! Fixed an ommitted SETGET keyword causing demowvg/demoxbp defunct.

View File

@@ -1571,8 +1571,8 @@ FUNCTION hbide_stripRoot( cRoot, cPath )
ENDIF
cLRoot := hbide_pathNormalized( cRoot, .t. )
cLPath := hbide_pathNormalized( cPath, .t. )
IF left( cLPath, len( cLRoot ) ) == cLRoot
cLPath := hbide_pathNormalized( cPath, .f. )
IF left( lower( cLPath ), len( cLRoot ) ) == cLRoot
cP := substr( cLPath, len( cRoot ) + 1 )
RETURN cP
ENDIF