diff --git a/harbour/ChangeLog b/harbour/ChangeLog index fc8d831dbf..16f28ed645 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,15 @@ The license applies to all entries newer than 2009-04-28. */ +2010-11-11 23:44 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbzebra/tests/testwin.prg + * Trying to figure what's best way to round off coordinates + to the stupid integers the winapi requires. Patch it further + if you know better. + + * bin/hb3rdpat.hbs + + Clarification to help text, by Tamas. + 2010-11-11 22:44 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbzebra/coredraw.c + Added protection against NULL pCallback pointer. diff --git a/harbour/bin/hb3rdpat.hbs b/harbour/bin/hb3rdpat.hbs index 7df1d390bd..fe808181a5 100755 --- a/harbour/bin/hb3rdpat.hbs +++ b/harbour/bin/hb3rdpat.hbs @@ -114,7 +114,12 @@ * --------------------- * * By default, hb3rdpat operates in `component version updating' mode - that is, - * refreshing the component version to a newer upstream version. + * refreshing the component version to a newer upstream version. Let it be noted + * that if the new version is very different from the currently in-tree version + * (lots of new files, removed files, radically re-organized upstream source + * tree, for example), hb3rdpat's utility will decrease steeply. In such cases + * considering the full manual update of the component is advised. + * By default, hb3rdpat operates in `component version updating' mode - that is, * * If hb3rdpat is called with the `-rediff' command line argument, it switches * to a `local diff refresh' mode. This mode is used to refresh the local diff diff --git a/harbour/contrib/hbzebra/tests/testwin.prg b/harbour/contrib/hbzebra/tests/testwin.prg index 93c4144196..72b32d3f44 100644 --- a/harbour/contrib/hbzebra/tests/testwin.prg +++ b/harbour/contrib/hbzebra/tests/testwin.prg @@ -129,4 +129,4 @@ STATIC FUNCTION hb_zebra_draw_wapi( hZebra, hDC, hBrush, ... ) RETURN HB_ZEBRA_ERROR_INVALIDZEBRA ENDIF - RETURN hb_zebra_draw( hZebra, {| x, y, w, h | wapi_FillRect( hDC, { x, y, x + w, y + h }, hBrush ) }, ... ) + RETURN hb_zebra_draw( hZebra, {| x, y, w, h | wapi_FillRect( hDC, { Int( x + .5 ), Int( y + .5 ), Int( x + .5 ) + Int( w ), Int( y + .5 ) + Int( h ) + 1 }, hBrush ) }, ... )