- Timestamp:
 - Jan 1, 2000, 1:18:07 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/user32/win32wbase.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/user32/win32wbase.cpp
r2269 r2287 1 /* $Id: win32wbase.cpp,v 1.1 29 1999-12-30 18:32:59 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.130 2000-01-01 12:18:07 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 821 821 ULONG Win32BaseWindow::MsgPosChanging(LPARAM lp) 822 822 { 823 if(fNoSizeMsg) 823 //SvL: Notes crashes when switching views (calls DestroyWindow -> PM sends 824 // a WM_WINDOWPOSCHANGED msg -> crash) 825 if(fNoSizeMsg || fDestroyWindowCalled) 824 826 return 1; 825 827 … … 830 832 ULONG Win32BaseWindow::MsgPosChanged(LPARAM lp) 831 833 { 832 if(fNoSizeMsg) 834 //SvL: Notes crashes when switching views (calls DestroyWindow -> PM sends 835 // a WM_WINDOWPOSCHANGED msg -> crash) 836 if(fNoSizeMsg || fDestroyWindowCalled) 833 837 return 1; 834 838  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  