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.
This commit is contained in:
Pritpal Bedi
2010-07-16 16:09:09 +00:00
parent e000a6a0b4
commit 64b5e77a32
2 changed files with 9 additions and 2 deletions

View File

@@ -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.

View File

@@ -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