2011-01-03 13:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/findinfilesex.ui
    ! .rc => .txt
  * contrib/hbide/idefindreplace.prg
    + Included: all text files defined per <Setup><Fonts><Text file extensions>
      for "Find in Files" to be searched along other pre defined file types.
      This is also valid for files included in projects per -3rd= option.

      First commit in year 2011 - Wish all Harbourians a Rewarding New Year.
This commit is contained in:
Pritpal Bedi
2011-01-03 21:10:44 +00:00
parent f0cf48b522
commit e4d5fdefe7
3 changed files with 19 additions and 6 deletions

View File

@@ -16,6 +16,16 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-01-03 13:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/findinfilesex.ui
! .rc => .txt
* contrib/hbide/idefindreplace.prg
+ Included: all text files defined per <Setup><Fonts><Text file extensions>
for "Find in Files" to be searched along other pre defined file types.
This is also valid for files included in projects per -3rd= option.
First commit in year 2011 - Wish all Harbourians a Rewarding New Year.
2011-03-01 22:20 UTC+0200 Petr Chornyj (myorg63 at mail.ru)
* contrib/hbmisc/nconvert.prg
+ Added DecToRoman() function

View File

@@ -99,12 +99,12 @@
<widget class="QCheckBox" name="checkRc">
<property name="maximumSize">
<size>
<width>33</width>
<width>40</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>.rc</string>
<string>.txt</string>
</property>
</widget>
</item>

View File

@@ -1069,7 +1069,7 @@ METHOD IdeFindInFiles:find()
lCpp := ::oUI:q_checkCpp:isChecked()
lH := ::oUI:q_checkH:isChecked()
lCh := ::oUI:q_checkCh:isChecked()
lRc := ::oUI:q_checkRc:isChecked()
lRc := ::oUI:q_checkRc:isChecked() /* Conceptually it is now lText */
aFilter := hbide_buildFilter( lPrg, lC, lCpp, lH, lCh, lRc )
@@ -1416,8 +1416,9 @@ METHOD IdeFindInFiles:paintRequested( pPrinter )
/*----------------------------------------------------------------------*/
STATIC FUNCTION hbide_buildFilter( lPrg, lC, lCpp, lH, lCh, lRc )
STATIC FUNCTION hbide_buildFilter( lPrg, lC, lCpp, lH, lCh, lTxt )
LOCAL aFilter := {}
LOCAL aExt
IF lPrg
aadd( aFilter, "*.prg" )
@@ -1433,9 +1434,11 @@ STATIC FUNCTION hbide_buildFilter( lPrg, lC, lCpp, lH, lCh, lRc )
ENDIF
IF lCh
aadd( aFilter, "*.ch" )
aadd( aFilter, "*.h" )
ENDIF
IF lRc
aadd( aFilter, "*.rc" )
IF lTxt
aExt := hb_atokens( hbide_setIde():oINI:cTextFileExtensions, "," )
aeval( aExt, {|e| iif( empty( e ), NIL, aadd( aFilter, e ) ) } )
ENDIF
RETURN aFilter