Changeset 1433 for trunk/src/user32/edit.cpp
- Timestamp:
- Oct 25, 1999, 12:56:11 AM (26 years ago)
- 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 $ */ 2 2 /* 3 3 * Edit control … … 2810 2810 return 0; 2811 2811 2812 len = min(count, lstrlenA(es->text)); // determine length 2812 //SvL: Bugfix: +1 2813 len = min(count, lstrlenA(es->text)+1); // determine length 2813 2814 lstrcpynA(text, es->text, len); // copy as much as possible 2814 2815 return len; … … 3717 3718 WNDCLASSA wndClass; 3718 3719 3719 if (GlobalFindAtomA(EDITCLASSNAME)) return FALSE; 3720 //SvL: Don't check this now 3721 // if (GlobalFindAtomA(EDITCLASSNAME)) return FALSE; 3720 3722 3721 3723 ZeroMemory(&wndClass,sizeof(WNDCLASSA));
Note:
See TracChangeset
for help on using the changeset viewer.