diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6d44a188c9..f7fb68488d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-09-14 22:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/common/hbverdsp.c + + Showing MT status on //BUILD screen. + + * contrib/hbvpdf/hbvpdf.prg + ! Fix to previous modification (fixing bookmarks). + 2008-09-14 22:15 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbsetup.h * accept both settings: HB_FM_STATISTICS and HB_FM_STATISTICS_OFF diff --git a/harbour/contrib/hbvpdf/hbvpdf.prg b/harbour/contrib/hbvpdf/hbvpdf.prg index 6d25428bea..fa520e5b91 100644 --- a/harbour/contrib/hbvpdf/hbvpdf.prg +++ b/harbour/contrib/hbvpdf/hbvpdf.prg @@ -465,7 +465,7 @@ local nI, cTemp, nCurLevel, nObj1, nLast, nCount, nFirst, nRecno, nBooklen ++aReport[ REPORTOBJ ] nRecno := 1 FOR nI := 1 to nBookLen - cTemp := CRLF + ltrim(str( aReport[ REPORTOBJ ] + nI )) + " 0 obj" + CRLF + ; + cTemp := CRLF + ltrim(str( aReport[ REPORTOBJ ] + nI - 1 )) + " 0 obj" + CRLF + ; "<<" + CRLF + ; "/Parent " + ltrim(str( aReport[ BOOKMARK ][ nRecno ][ BOOKPARENT ])) + " 0 R" + CRLF + ; "/Dest [" + ltrim(str( aReport[ PAGES ][ aReport[ BOOKMARK ][ nRecno ][ BOOKPAGE ] ] )) + " 0 R /XYZ 0 " + ltrim( str( aReport[ BOOKMARK ][ nRecno ][ BOOKCOORD ])) + " 0]" + CRLF + ; diff --git a/harbour/source/common/hbverdsp.c b/harbour/source/common/hbverdsp.c index aefce8f061..f58bfcc741 100644 --- a/harbour/source/common/hbverdsp.c +++ b/harbour/source/common/hbverdsp.c @@ -144,13 +144,16 @@ void hb_verBuildInfo( void ) } hb_conOutErr( "Other build settings: ", 0 ); +#if defined( HB_MT_VM ) + hb_conOutErr( "(MT) ", 0 ); +#endif #if defined(__cplusplus) - hb_conOutErr( "(C++ mode)", 0 ); + hb_conOutErr( "(C++ mode) ", 0 ); #else - hb_conOutErr( "(C mode)", 0 ); + hb_conOutErr( "(C mode) ", 0 ); #endif #if defined( HB_STRICT_ANSI_C ) - hb_conOutErr( "(ANSI C symbol initialization)", 0 ); + hb_conOutErr( "(ANSI C symbol initialization) ", 0 ); #endif hb_conOutErr( hb_conNewLine(), 0 );