2011-06-06 07:16 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/idechangelog.prg
    * Fixed: a stupid typo.
This commit is contained in:
Pritpal Bedi
2011-06-06 14:17:54 +00:00
parent 675cbdbc4f
commit a19eef4129
2 changed files with 6 additions and 2 deletions

View File

@@ -16,7 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-06-06 14:26 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
2011-06-06 07:16 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idechangelog.prg
* Fixed: a stupid typo.
2011-06-06 02:26 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideactions.prg
! Fixed: "CodePage" submenu in "Setup" went hidden for some time.

View File

@@ -261,7 +261,7 @@ METHOD IdeChangeLog:execEvent( cEvent, p )
IF ( n := at( "$<", cTmp1 ) ) > 0
cTmp1 := substr( cTmp1, 1, n - 1 ) + s + hbide_eol() + ::buildLogEntry() + hbide_eol() + substr( cTmp1, n )
ELSE
cTmp1 += hbide_eol() + s + hbide_eol() + cTmp + hbide_eol()
cTmp1 += hbide_eol() + s + hbide_eol() + cTmp1 + hbide_eol()
ENDIF
hb_memowrit( ::oINI:cChangeLog, cTmp1 ) /* TODO: put it under locking protocol */
::aLog := {}