2010-05-06 07:13 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbide/idesaveload.prg
    ! Fixed hbide_getIniPath() to initialize <cPath> for OS2.
      Reported by David.
This commit is contained in:
Pritpal Bedi
2010-05-06 14:15:25 +00:00
parent 5605b7cb1f
commit cb4cdd1cf6
2 changed files with 7 additions and 0 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-06 07:13 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idesaveload.prg
! Fixed hbide_getIniPath() to initialize <cPath> for OS2.
Reported by David.
2010-05-06 16:08 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbsocket.c
! enabled domain and protocol constant values translation in

View File

@@ -250,6 +250,8 @@ FUNCTION hbide_getIniPath( cHbideIni )
cPath := hbide_DirAddPathSep( GetEnv( "APPDATA" ) ) + "hbide\"
#elif defined( __PLATFORM__UNIX )
cPath := hbide_DirAddPathSep( GetEnv( "HOME" ) ) + ".hbide/"
#elif defined( __PLATFORM__OS2 )
cPath := hbide_DirAddPathSep( GetEnv( "HOME" ) ) + ".hbide/"
#endif
IF ! hb_dirExists( cPath )
MakeDir( cPath )