Changeset 1762 for trunk/src/user32/edit.cpp
- Timestamp:
- Nov 17, 1999, 6:06:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/edit.cpp
r1724 r1762 1 /* $Id: edit.cpp,v 1.1 4 1999-11-13 16:42:41cbratschi Exp $ */1 /* $Id: edit.cpp,v 1.15 1999-11-17 17:04:52 cbratschi Exp $ */ 2 2 /* 3 3 * Edit control … … 2627 2627 switch (c) { 2628 2628 case '\r': 2629 2630 2631 2629 /* If the edit doesn't want the return and it's not a multiline edit, do nothing */ 2630 if(!(es->style & ES_MULTILINE) && !(es->style & ES_WANTRETURN)) 2631 break; 2632 2632 case '\n': 2633 2633 if (es->style & ES_MULTILINE) { … … 3285 3285 EDIT_EM_SetSel(hwnd, es, es->selection_start, e, after_wrap); 3286 3286 3287 return 1; //SvL: Bugfix -> PMWINDOW expects non-zero return value if 3288 // we want to restore the default mouse cursor 3287 return 0; 3289 3288 } 3290 3289
Note:
See TracChangeset
for help on using the changeset viewer.