Ignore:
Timestamp:
Nov 14, 1999, 11:58:38 AM (26 years ago)
Author:
achimha
Message:

added HEAP_strdupAtoW/WtoA calls that were commented out

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/comctl32.c

    r1058 r1730  
    1 /* $Id: comctl32.c,v 1.10 1999-09-26 11:01:08 achimha Exp $ */
     1/* $Id: comctl32.c,v 1.11 1999-11-14 10:58:37 achimha Exp $ */
    22/*
    33 * Win32 common controls implementation
     
    365365DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
    366366{
    367 // ERROR DON'T KNOW HOW TO TRANSLATE!!!
    368 LPSTR p;
    369 //    LPSTR p = HEAP_strdupWtoA (GetProcessHeap (), 0, text);
     367    LPSTR p = HEAP_strdupWtoA (GetProcessHeap (), 0, text);
    370368    DrawStatusTextA (hdc, lprc, p, style);
    371369    HeapFree (GetProcessHeap (), 0, p );
Note: See TracChangeset for help on using the changeset viewer.