Hi All

I found small problem in debbuger

when try to locate some text in source file debbuger chrashed:

METHOD Search( cString, lCaseSensitive, nMode ) CLASS HBBrwText

  LOCAL bMove
  LOCAL lFound := .F.

  IF !lCaseSensitive
     cString := Upper( cString )
  ENDIF

  DO CASE
  CASE nMode == 0 // From Top
     ::GoTop()
     bMove := {|| ::Skip( 1 ) }
  CASE nMode == 1 // Forward
     bMove := {|| ::Skip( 1 ) }
  CASE nMode == 2 // Backward
     bMove := {|| ::Skip( -1 ) }
  ENDCASE

  DO WHILE Eval( bMove ) != 0
IF cString $ IIF( lCaseSensitive, ::cCurLine, Upper( ::cCurLine ) ) <--------- here ::cCurLine is not initialized and valtype return NIL
        lFound := .T.
        ::RefreshAll()
        EXIT
     ENDIF
  ENDDO

  RETURN lFound

I try to found solution but I'm not much familiar with oo coding style. cCurLine are not initialized and used anywhere
anybody can take a look

best regards
Davor






_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to