2012-06-14 12:11 UTC+0200 Viktor Szakats (harbour syenar.net)

* utils/hbmk2/hbmk2.prg
    ! fixed not updating extension list on screen when it 
      became empty
This commit is contained in:
Viktor Szakats
2012-06-14 10:12:00 +00:00
parent ebf9e1dd12
commit f7a438ec12
2 changed files with 8 additions and 3 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-06-14 12:11 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
! fixed not updating extension list on screen when it
became empty
2012-06-14 12:01 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/hbide/hbide.hbp
* contrib/hbide/idemain.prg

View File

@@ -12427,6 +12427,7 @@ FUNCTION __hbrun_extensions_dynamic_load( cName )
FUNCTION __hbrun_extensions_dynamic_unload( cName )
IF cName $ s_hLibExtDyn .AND. s_hLibExtDyn[ cName ] != NIL
s_hLibExtDyn[ cName ] := NIL
hb_HDel( s_hLibExtDyn, cName )
RETURN .T.
ENDIF
@@ -12779,9 +12780,8 @@ STATIC PROCEDURE __hbrun_Info( cCommand )
IF s_lPreserveHistory
hb_DispOutAt( 1, MaxCol(), "o", "R/BG" )
ENDIF
IF ! Empty( __hbrun_extensions_get_list() )
hb_DispOutAt( 2, 0, PadR( "Ext: " + ArrayToList( __hbrun_extensions_get_list(), ", " ), MaxCol() + 1 ), "W/B" )
ENDIF
hb_DispOutAt( 2, 0, PadR( "Ext: " + ArrayToList( __hbrun_extensions_get_list(), ", " ), MaxCol() + 1 ), "W/B" )
RETURN