Ignore:
Timestamp:
May 25, 2001, 12:05:29 PM (24 years ago)
Author:
sandervl
Message:

dib section sync, setdibits & setpalette bugfixes

File:
1 edited

Legend:

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

    r5795 r5799  
    1 /* $Id: text.cpp,v 1.21 2001-05-24 19:26:31 sandervl Exp $ */
     1/* $Id: text.cpp,v 1.22 2001-05-25 10:05:29 sandervl Exp $ */
    22
    33/*
     
    874874   //     in the Settings dialog box of VirtualPC. Strings are clipped.
    875875   //     (e.g.: Hard Disk 1 -> Hard Disk)
    876    return O32_GetTextExtentPoint(hdc, lpsz, cbString, lpsSize);
     876   dprintf(("GDI32: GetTextExtentPointA %s\n", lpsz));
     877   BOOL rc = O32_GetTextExtentPoint(hdc, lpsz, cbString, lpsSize);
     878   if(rc) {
     879      dprintf(("GDI32: GetTextExtentPointA %x %s %d returned %d (%d,%d)", hdc, lpsz, cbString, rc, lpsSize->cx, lpsSize->cy));
     880      SetLastError(ERROR_SUCCESS);
     881      return TRUE;
     882   }
     883   return FALSE;
    877884#else
    878885   BOOL       rc;
Note: See TracChangeset for help on using the changeset viewer.