2012-10-09 11:12 UTC+0200 Viktor Szakats (harbour syenar.net)
* contrib/gtwvg/class.prg
* contrib/gtwvg/syswnd.prg
* contrib/hbgd/gdchart.prg
+ using HB_IS*() for strict type checking instead of 'IF x == NIL'
check recently converted from DEFAULT TO commands.
This is INCOMPATIBLE for cases where wrong type was passed
for these parameters.
* contrib/xhb/cstruct.prg
* contrib/xhb/tcgi.prg
* src/debug/dbghelp.prg
* src/debug/dbgtmenu.prg
* src/debug/dbgtmitm.prg
* src/debug/debugger.prg
* contrib/hbhttpd/core.prg
* contrib/hbpgsql/tests/cache.prg
* contrib/hbpgsql/tpostgre.prg
* contrib/hbnf/metaph.prg
* extras/gtwvw/tests/ebtest7.prg
* extras/guestbk/testcgi.prg
* extras/gfspell/spell.prg
% deleted 3rd parameter from expressions 'StrTran( x, y, "" )'
Empty string is the default.
* contrib/xhb/cstruct.prg
! fixed formatting and indentation using hbformat and manually
* utils/hbmk2/hbmk2.prg
% minor opt by replacing 'iif( ! Empty(' with 'iif( Empty('
This commit is contained in:
@@ -958,11 +958,11 @@ METHOD DoCommand( cCommand ) CLASS HBDebugger
|
||||
FOR n := 1 TO 11
|
||||
IF At( ",", cParam1 ) != 0
|
||||
::aColors[ n ] := ;
|
||||
StrTran( Left( cParam1, At( ",", cParam1 ) - 1 ), '"', "" )
|
||||
StrTran( Left( cParam1, At( ",", cParam1 ) - 1 ), '"' )
|
||||
cParam1 := SubStr( cParam1, At( ",", cParam1 ) + 1 )
|
||||
ELSE
|
||||
::aColors[ n ] := ;
|
||||
StrTran( Left( cParam1, At( "}", cParam1 ) - 1 ), '"', "" )
|
||||
StrTran( Left( cParam1, At( "}", cParam1 ) - 1 ), '"' )
|
||||
ENDIF
|
||||
NEXT
|
||||
::LoadColors()
|
||||
|
||||
Reference in New Issue
Block a user