Changeset 12870


Ignore:
Timestamp:
Jan 1, 2000, 1:18:07 PM (25 years ago)
Author:
sandervl
Message:

Fix for Notes crash when switching to new view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/user32/win32wbase.cpp

    r12853 r12870  
    1 /* $Id: win32wbase.cpp,v 1.129 1999-12-30 18:32:59 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.130 2000-01-01 12:18:07 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    821821ULONG Win32BaseWindow::MsgPosChanging(LPARAM lp)
    822822{
    823     if(fNoSizeMsg)
     823    //SvL: Notes crashes when switching views (calls DestroyWindow -> PM sends
     824    //     a WM_WINDOWPOSCHANGED msg -> crash)
     825    if(fNoSizeMsg || fDestroyWindowCalled)
    824826        return 1;
    825827
     
    830832ULONG Win32BaseWindow::MsgPosChanged(LPARAM lp)
    831833{
    832     if(fNoSizeMsg)
     834    //SvL: Notes crashes when switching views (calls DestroyWindow -> PM sends
     835    //     a WM_WINDOWPOSCHANGED msg -> crash)
     836    if(fNoSizeMsg || fDestroyWindowCalled)
    833837        return 1;
    834838
Note: See TracChangeset for help on using the changeset viewer.