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).
This commit is contained in:
Viktor Szakats
2008-09-14 20:44:42 +00:00
parent ca21165e4b
commit 8e7057547b
3 changed files with 14 additions and 4 deletions

View File

@@ -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

View File

@@ -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 + ;

View File

@@ -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 );