Ignore:
Timestamp:
Jan 30, 2004, 11:20:00 PM (22 years ago)
Author:
bird
Message:

#682: Test for DEBUG_LOGGING not DEBUG.

File:
1 edited

Legend:

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

    r10374 r10434  
    1 /* $Id: gdi32.cpp,v 1.91 2004-01-11 11:42:15 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.92 2004-01-30 22:19:59 bird Exp $ */
    22
    33/*
     
    171171//******************************************************************************
    172172//******************************************************************************
    173 HPEN WIN32API ExtCreatePen(DWORD dwPenStyle, DWORD dwWidth, const LOGBRUSH *lplb, 
     173HPEN WIN32API ExtCreatePen(DWORD dwPenStyle, DWORD dwWidth, const LOGBRUSH *lplb,
    174174                           DWORD dwStyleCount, const DWORD *lpStyle)
    175175{
     
    216216{
    217217 HBRUSH hBrush;
    218  
     218
    219219    hBrush = O32_CreateHatchBrush(fnStyle, clrref);
    220220    if(hBrush) STATS_CreateHatchBrush(hBrush, fnStyle, clrref);
     
    265265  {
    266266      dprintf(("GDI32: CreateDIBPatternBrush (%08xh, %08xh) %x (%d,%d) bpp %d",
    267                 hglbDIBPacked, fuColorSpec, lpMem, lpMem->bmiHeader.biWidth, 
     267                hglbDIBPacked, fuColorSpec, lpMem, lpMem->bmiHeader.biWidth,
    268268                lpMem->bmiHeader.biHeight, lpMem->bmiHeader.biBitCount));
    269269
     
    541541    return rc;
    542542}
    543 #ifdef DEBUG
     543#ifdef DEBUG_LOGGING
    544544//******************************************************************************
    545545//******************************************************************************
     
    760760       dprintf(("WARNING: GDI32: RectVisible %x lpRect == NULL!"));
    761761       return FALSE;
    762     }   
     762    }
    763763    dprintf(("GDI32: RectVisible %x (%d,%d)(%d,%d)", hdc, lpRect->left, lpRect->top, lpRect->right, lpRect->bottom));
    764764    return O32_RectVisible(hdc, lpRect);
Note: See TracChangeset for help on using the changeset viewer.