diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 65c977df02..530c563829 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,12 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-16 09:04 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbide/idebrowse.prg + ! Fixed: ideDBU - sequential search on a character field was + making exact comparison, i.e., fieldval == searchval, now + it is : fieldval = searchval. + 2010-07-16 15:15 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/hbinit.h ! Fix to prev. Missed another 'static' qualifier. diff --git a/harbour/contrib/hbide/idebrowse.prg b/harbour/contrib/hbide/idebrowse.prg index 7be8f8d1d7..2b0ca4866c 100644 --- a/harbour/contrib/hbide/idebrowse.prg +++ b/harbour/contrib/hbide/idebrowse.prg @@ -1386,9 +1386,10 @@ METHOD IdeBrowse:execEvent( cEvent, p, p1 ) ::oBrw:down() IF ::oBrw:hitBottom ::qTimer:stop() - ENDIF - IF eval( ::oBrw:getColumn( ::oBrw:colPos ):block ) == ::xSearch + ::dispInfo() + ELSEIF eval( ::oBrw:getColumn( ::oBrw:colPos ):block ) = ::xSearch ::qTimer:stop() + ::dispInfo() ENDIF EXIT