Ignore:
Timestamp:
Oct 25, 1999, 12:56:11 AM (26 years ago)
Author:
sandervl
Message:

class changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/edit.cpp

    r1425 r1433  
    1 /* $Id: edit.cpp,v 1.7 1999-10-23 23:04:33 sandervl Exp $ */
     1/* $Id: edit.cpp,v 1.8 1999-10-24 22:56:03 sandervl Exp $ */
    22/*
    33 *      Edit control
     
    28102810    return 0;
    28112811
    2812   len = min(count, lstrlenA(es->text)); // determine length
     2812  //SvL: Bugfix: +1
     2813  len = min(count, lstrlenA(es->text)+1); // determine length
    28132814  lstrcpynA(text, es->text, len);       // copy as much as possible
    28142815  return len;
     
    37173718    WNDCLASSA wndClass;
    37183719
    3719     if (GlobalFindAtomA(EDITCLASSNAME)) return FALSE;
     3720//SvL: Don't check this now
     3721//    if (GlobalFindAtomA(EDITCLASSNAME)) return FALSE;
    37203722
    37213723    ZeroMemory(&wndClass,sizeof(WNDCLASSA));
Note: See TracChangeset for help on using the changeset viewer.