diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 89348fea30..7b0a40b2a2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 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 diff --git a/harbour/contrib/hbide/idesaveload.prg b/harbour/contrib/hbide/idesaveload.prg index 505f8f28bf..a6e51f962e 100644 --- a/harbour/contrib/hbide/idesaveload.prg +++ b/harbour/contrib/hbide/idesaveload.prg @@ -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 )