Ignore:
Timestamp:
Apr 30, 2004, 3:27:19 PM (21 years ago)
Author:
sandervl
Message:

drawSingleLinePoint: wrong pen style checks; logging updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/oslibgpi.cpp

    r10583 r10594  
    1 /* $Id: oslibgpi.cpp,v 1.18 2004-04-14 09:44:13 sandervl Exp $ */
     1/* $Id: oslibgpi.cpp,v 1.19 2004-04-30 13:27:18 sandervl Exp $ */
    22
    33/*
     
    363363  arcp.lS = 0;
    364364  if (!GpiSetArcParams(GetDCData(pHps)->hps,&arcp))
    365     return FALSE;
     365  {
     366      dprintf(("drawLinePointCircle: GpiSetArcParams failed with %x!!", WinGetLastError(0)));
     367      return FALSE;
     368  }
    366369
    367370  AREABUNDLE newAreaBundle, oldAreaBundle;
     
    378381
    379382  if (!GpiSetAttrs(GetDCData(pHps)->hps,PRIM_AREA,ABB_COLOR | ABB_MIX_MODE | ABB_SET | ABB_SYMBOL,0,(PBUNDLE)&newAreaBundle))
    380     return FALSE;
     383  {
     384      dprintf(("drawLinePointCircle: GpiSetAttrs failed with %x!!", WinGetLastError(0)));
     385      return FALSE;
     386  }
    381387
    382388  if (GpiFullArc(GetDCData(pHps)->hps,DRO_FILL,MAKEFIXED((width-1)>>1,0)) == GPI_ERROR)
    383     rc = FALSE;
     389  {
     390      dprintf(("drawLinePointCircle: GpiFullArc failed with %x!!", WinGetLastError(0)));
     391      rc = FALSE;
     392  }
    384393  GpiSetAttrs(GetDCData(pHps)->hps,PRIM_AREA,ABB_COLOR | ABB_MIX_MODE | ABB_SET | ABB_SYMBOL,0,(PBUNDLE)&oldAreaBundle);
    385394
Note: See TracChangeset for help on using the changeset viewer.