2010-10-06 12:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/ideedit.prg
    ! Fixed: regression reported by Itamar.
This commit is contained in:
Pritpal Bedi
2010-10-06 19:20:16 +00:00
parent 2cf025fa75
commit ed1ce9178d
2 changed files with 7 additions and 3 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-10-06 12:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideedit.prg
! Fixed: regression reported by Itamar.
2010-10-06 20:56 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/gtwvt/gtwvt.c
! fixed possible double font freeing in non UNICODE builds

View File

@@ -2288,7 +2288,7 @@ METHOD IdeEdit:resumePrototype()
::isSuspended := .f.
IF !empty( ::qEdit )
IF ::getLineNo() == ::nProtoLine .AND. ::getColumnNo() >= ::nProtoCol
::qEdit:hbShowPrototype( ::cProto )
::qEdit:hbShowPrototype( ::cProto, ::nProtoRows, ::nProtoCols )
ENDIF
ENDIF
@@ -2300,7 +2300,7 @@ METHOD IdeEdit:suspendPrototype()
::isSuspended := .t.
IF !empty( ::qEdit )
::qEdit:hbShowPrototype( "" )
::qEdit:hbShowPrototype( "", 0, 0 )
ENDIF
RETURN Self
@@ -2330,7 +2330,7 @@ METHOD IdeEdit:hidePrototype()
::cProto := ""
::nProtoCols := 10
::nProtoRows := 1
::qEdit:hbShowPrototype( "" )
::qEdit:hbShowPrototype( "", 0, 0 )
ENDIF
RETURN Self