Changeset 1786
- Timestamp:
 - Nov 21, 1999, 10:43:18 AM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/user32/win32wbase.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/user32/win32wbase.cpp
r1762 r1786 1 /* $Id: win32wbase.cpp,v 1.8 5 1999-11-17 17:04:55 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.86 1999-11-21 09:43:18 achimha Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2665 2665 wndNameLength = strlen(windowNameA)+1; //including 0 terminator 2666 2666 2667 // Edit and static text controls also need a WM_SETTEXT message 2668 if (getWindowClass()->hasClassName("EDIT", FALSE) || 2669 getWindowClass()->hasClassName("STATIC", FALSE)) 2670 SendInternalMessageA(WM_SETTEXT, 0, (LPARAM)windowNameA); 2671 2667 2672 if(OS2HwndFrame) 2668 2673 return OSLibWinSetWindowText(OS2HwndFrame, (LPSTR)windowNameA); … … 2685 2690 lstrcpyWtoA(windowNameA, windowNameW); 2686 2691 wndNameLength = strlen(windowNameA)+1; //including 0 terminator 2692 2693 // Edit and static text controls also need a WM_SETTEXT message 2694 if (getWindowClass()->hasClassName("EDIT", FALSE) || 2695 getWindowClass()->hasClassName("STATIC", FALSE)) 2696 SendInternalMessageA(WM_SETTEXT, 0, (LPARAM)windowNameA); 2687 2697 2688 2698 if(OS2HwndFrame)  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  