Ignore:
Timestamp:
Jun 16, 1999, 10:25:45 PM (26 years ago)
Author:
cbratschi
Message:

comctl32 wine conversion bugs fixed
trackbar: TRACKBAR_Draw prototype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winmod.cpp

    r99 r110  
    1 /* $Id: winmod.cpp,v 1.3 1999-06-10 19:09:05 phaller Exp $ */
     1/* $Id: winmod.cpp,v 1.4 1999-06-16 20:25:45 cbratschi Exp $ */
    22
    33/*
     
    6767    curnid = (NameId *)((char *)curnid + sizeof(NameId) + strlen(curnid->name));
    6868  }
     69
    6970  //try upper case search
    7071  //SvL: Copy it, since string might be located in readonly object
    71   upname = (char *)malloc(strlen(lpszName)+1);
     72
     73  upname = (char *)malloc(strlen(lpszName)+1); //CB: Trap with MFC Toolbar/UpDown samples
    7274  strcpy(upname, lpszName);
    7375  UpCase(upname);
Note: See TracChangeset for help on using the changeset viewer.