Changeset 4344
- Timestamp:
 - Sep 30, 2000, 12:28:10 AM (25 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/user32/edit.cpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/user32/edit.cpp
r3584 r4344 1 /* $Id: edit.cpp,v 1. 39 2000-05-22 17:21:07 cbratschiExp $ */1 /* $Id: edit.cpp,v 1.40 2000-09-29 22:28:10 sandervl Exp $ */ 2 2 /* 3 3 * Edit control … … 4025 4025 static void EDIT_WM_SetText(HWND hwnd, EDITSTATE *es, LPCSTR text) 4026 4026 { 4027 #ifdef __WIN32OS2__ 4028 //SvL: Acrobat Distiller keeps on sending WM_SETTEXT with the same 4029 // string in responds to a WM_COMMAND with EN_UPDATE -> stack 4030 // overflow (TODO: Need to check if this behaviour is correct compared to NT) 4031 if(text && es->text) { 4032 if(!strcmp(es->text, text)) { 4033 return; 4034 } 4035 } 4036 #endif 4027 4037 es->selection_start = 0; 4028 4038 es->selection_end = lstrlenA(es->text);  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  