From ed1ce9178d4386e5f90c1f6ec05ebf0444a56d5b Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 6 Oct 2010 19:20:16 +0000 Subject: [PATCH] 2010-10-06 12:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/ideedit.prg ! Fixed: regression reported by Itamar. --- harbour/ChangeLog | 4 ++++ harbour/contrib/hbide/ideedit.prg | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 40a95f5cda..8e80154bcd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbide/ideedit.prg b/harbour/contrib/hbide/ideedit.prg index 0d66404b5a..c49aeebbb6 100644 --- a/harbour/contrib/hbide/ideedit.prg +++ b/harbour/contrib/hbide/ideedit.prg @@ -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