2008-10-21 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/rtl/console.c
    ! Fixed typo in hb_dispoutAt() numeric color handling.

  * source/rtl/box.c
    * Minor formatting.
This commit is contained in:
Viktor Szakats
2008-10-21 07:35:52 +00:00
parent ad8389d113
commit 5ea5b2d18a
3 changed files with 9 additions and 3 deletions

View File

@@ -8,6 +8,13 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-10-21 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/console.c
! Fixed typo in hb_dispoutAt() numeric color handling.
* source/rtl/box.c
* Minor formatting.
2008-10-21 08:29 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
+ contrib/rddsql
+ contrib/rddsql/common.mak

View File

@@ -124,7 +124,6 @@ HB_FUNC( HB_DISPBOX )
const char * pszColor = hb_parc( 6 );
int iColor;
if( pszColor )
iColor = hb_gtColorToN( pszColor );
else if( ISNUM( 6 ) )

View File

@@ -593,8 +593,8 @@ HB_FUNC( HB_DISPOUTAT )
if( ISCHAR( 4 ) )
iColor = hb_gtColorToN( hb_parc( 4 ) );
else if( ISNUM( 6 ) )
iColor = hb_parni( 6 );
else if( ISNUM( 4 ) )
iColor = hb_parni( 4 );
else
iColor = -1;