2009-02-21 07:15 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* harbour/contrib/gtwvg/wvgwin.c
  * harbour/contrib/gtwvg/wvgdarea.prg
    ! WIN_FillRect() => WVG_FillRect() 
      Namespace lashed with hbwin/win_prn1.c.
This commit is contained in:
Pritpal Bedi
2009-02-21 15:09:44 +00:00
parent 0e76882035
commit bb65350139
2 changed files with 4 additions and 3 deletions

View File

@@ -155,7 +155,7 @@ METHOD handleEvent( nMessage, aNM ) CLASS WvgDrawingArea
IF hb_isNumeric( ::hBrushBG )
Win_SetBkMode( hDC, 1 )
Win_FillRect( hDC, { 0,0,::currentSize()[1],::currentSize()[1]}, ::hBrushBG )
Wvg_FillRect( hDC, { 0,0,::currentSize()[1],::currentSize()[1]}, ::hBrushBG )
RETURN ( 0 )
ENDIF

View File

@@ -2634,8 +2634,9 @@ HB_FUNC( WVG_REGISTERCLASS_BYNAME )
}
//----------------------------------------------------------------------//
HB_FUNC( WIN_FILLRECT )
// Function with Win_FillRect() exists in hbwin:win_parn1.c with different approach.
// **************************************
HB_FUNC( WVG_FILLRECT )
{
RECT rc;