2010-04-08 13:37 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idemisc.prg
! Fixed wrong concataion of path and file when path was empty.
This fixes ( partially ) the built .exe detection in hbIDE.
This commit is contained in:
@@ -17,6 +17,11 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2010-04-08 13:37 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
|
||||
* contrib/hbide/idemisc.prg
|
||||
! Fixed wrong concataion of path and file when path was empty.
|
||||
This fixes ( partially ) the built .exe detection in hbIDE.
|
||||
|
||||
2010-04-08 21:23 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* utils/hbmk2/hbmk2.prg
|
||||
! Fixed not propely working filters in some options + situations.
|
||||
|
||||
@@ -657,7 +657,7 @@ FUNCTION hbide_pathNormalized( cPath, lLower )
|
||||
|
||||
FUNCTION hbide_pathFile( cPath, cFile )
|
||||
cPath := iif( right( cPath, 1 ) $ "\/", substr( cPath, 1, len( cPath ) - 1 ), cPath )
|
||||
RETURN hbide_pathToOSPath( cPath + "\" + cFile )
|
||||
RETURN hbide_pathToOSPath( iif( empty( cPath ), cFile, cPath + "\" + cFile ) )
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user