2008-09-09 11:34 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* contrib/hbct/numconv.prg
    ! Fixed typo. Thanks to Grigory Filatov for reporting it.
This commit is contained in:
Viktor Szakats
2008-09-09 09:35:15 +00:00
parent 13fb2c3316
commit 4601ac8eae
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-09 11:34 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbct/numconv.prg
! Fixed typo. Thanks to Grigory Filatov for reporting it.
2008-09-09 11:32 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
+ contrib/hbwhat32/hbwhat.h
* contrib/hbwhat32/whtbmp.c

View File

@@ -173,7 +173,7 @@ LOCAL nInt
IF nNum > 0
nInt := INT( nNum / nBase)
RETURN Iiif(nInt==0, "", B10TOBN( nInt, @nBase )) +;
RETURN iif(nInt==0, "", B10TOBN( nInt, @nBase )) +;
SUBSTR( WORLD, ( nNum % nBase ) + 1, 1 )
ELSEIF nNum == 0