2012-07-20 15:23 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/idefindreplace.prg
    ! Fixed: Find action in FindInFiles was opening the source in 
       "Main" view before searching. It should had been if source 
        is opened only then take it from editing instance otherwise
        from disk. I suspect yesterday night I was too tired.
This commit is contained in:
Pritpal Bedi
2012-07-20 22:26:41 +00:00
parent 717adc8afc
commit 674178d966
2 changed files with 13 additions and 2 deletions

View File

@@ -16,6 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-07-20 15:23 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idefindreplace.prg
! Fixed: Find action in FindInFiles was opening the source in
"Main" view before searching. It should had been if source
is opened only then take it from editing instance otherwise
from disk. I suspect yesterday night I was too tired.
2012-07-20 21:30 UTC+0200 Viktor Szakats (vszakats syenar.net)
* contrib/gtwvg/tests/demowvg.prg
* contrib/gtwvg/tests/wvgwvtclasses.prg

View File

@@ -1251,8 +1251,12 @@ METHOD IdeFindInFiles:findInABunch( aFiles )
s := hbide_pathToOSPath( s )
IF hb_fileExists( s )
::nSearched++
::oSM:editSource( s, 0, 0, 0, NIL, "Main", .f., .t. )
aBuffer := hb_ATokens( StrTran( ::qCurEdit:toPlainText(), Chr( 13 ) ), Chr( 10 ) )
IF ::oEM:isOpen( s )
::oSM:editSource( s, 0, 0, 0, NIL, "Main", .f., .t. )
aBuffer := hb_ATokens( StrTran( ::qCurEdit:toPlainText(), Chr( 13 ) ), Chr( 10 ) )
ELSE
aBuffer := hb_ATokens( StrTran( hb_MemoRead( s ), Chr( 13 ) ), Chr( 10 ) )
ENDIF
nLine := 0
IF ::lRegEx