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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user