Ignore:
Timestamp:
Jul 25, 2017, 11:59:20 PM (8 years ago)
Author:
dmik
Message:

user32: Make r22134 actually work.

It would not due to using a virtual function from the base destructor
(which always calls the base version instead of the derived).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r21916 r22135  
    180180virtual  BOOL   isMDIChild();
    181181virtual  BOOL   isDesktopWindow();
    182 virtual  BOOL   isFakeWindow();
     182         BOOL   isFakeWindow()                  { return fFakeWindow; }
    183183
    184184         BOOL   fHasParentDC()                  { return fParentDC; };
     
    423423                 fIsDragDropActive:1,
    424424                 fDirtyUpdateRegion:1,
    425                  fWindowLocked:1;
     425                 fWindowLocked:1,
     426                 fFakeWindow:1;
    426427
    427428        ULONG   state;
Note: See TracChangeset for help on using the changeset viewer.