2010-10-18 14:10 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/idemisc.prg
    + Applied: patch from Viktor. Now .hbm files are available inside
      list of project files and it also become part of the .hbp if that 
      is written back on disk plus for editing purposes.
This commit is contained in:
Pritpal Bedi
2010-10-18 21:09:27 +00:00
parent 6b368c695b
commit ef88e9472a
2 changed files with 9 additions and 0 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-10-18 14:10 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idemisc.prg
+ Applied: patch from Viktor. Now .hbm files are available inside
list of project files and it also become part of the .hbp if that
is written back on disk plus for editing purposes.
2010-10-18 21:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/debug/dbgwa.prg
! added missing REQUEST FIELDGET

View File

@@ -1457,6 +1457,7 @@ STATIC PROCEDURE hbide_HBPLoad( aParams, cFileName )
FOR EACH cParam IN hb_ATokens( cLine,, .T. )
cParamNQ := hbide_HBPStrStripQuote( cParam )
IF ! Empty( cParamNQ )
#if 0
DO CASE
CASE !( Left( cParamNQ, 1 ) == "-" ) .AND. Len( cParamNQ ) >= 1 .AND. Left( cParamNQ, 1 ) == "@" .AND. ;
!( Lower( hbide_HBPExtGet( cParamNQ ) ) == ".clp" )
@@ -1468,6 +1469,8 @@ STATIC PROCEDURE hbide_HBPLoad( aParams, cFileName )
OTHERWISE
AAdd( aParams, { cParam, cFileName, cLine:__enumIndex() } )
ENDCASE
#endif
AAdd( aParams, { cParam, cFileName, cLine:__enumIndex() } )
ENDIF
NEXT
ENDIF